function AlertConfirm (URL, AlertText)
{
var x=window.confirm(AlertText)

if (x)
	// If Yes
	window.location.href = URL
else
	// If No - Do nothing - go back to the form
	return false
}
