function confirmSubmit(x,y)
{
var agree=confirm("Silmek istediğinize emin misiniz?");
if (agree)
	window.location.href='index.php?go='+x+'&del='+y;
else
	return false ;
}

function confirmSubmit1(x)
{
var agree=confirm("Silmek istediğinize emin misiniz?");
if (agree)
	window.location.href='?'+x;
else
	return false ;
}
function confirmIptal(x)
{
	var agree=confirm("İptal etmek istediğinize emin misiniz?");
	if (agree)
		window.location.href='?'+x;
	else
		return false ;
}
