function Confirm(text, targeturl) {
	question = confirm(text);
	if (question != 0 && targeturl != "") { // Yes, and URL specified.
		document.location.href = targeturl;
		location.reload();	// IE 6.x fix for Logout
	}
	else if (question != "0" && targeturl == "") { // Yes, and URL NOT specified.
		return true;
	}
	else {
		return false;
	}
}