function Confirm(text,url)
{
	question = confirm(text)
	if (question !="0") { document.location.href = url; }
	else { return false; }
}