function showConfirm(url,id,msg)
{
	var abfrage = confirm (msg);

	if (abfrage != false)
	{
		document.location.href=url + id;
	}
}