function ConfirmDelete(question,url)
	{
 	var where_to= confirm(question);
 	if (where_to== true)
 		{
	   	window.location=url;
 		}
	}
