<!--
function validate() {
missinginfo = "";
if (!document.form1.confirm.checked) {
missinginfo += "You must confirm before you can proceed.";
alert(missinginfo);
return false;
} else {
return true;
}
}


function goto() {
	box = document.getElementById('goto');
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = destination;
}
function mailto(domain, user) {
	document.location.href = "mailto:" + user + "@" + domain;
}
function makenew() {
	window.open("callback.php","blank","toolbar=no,width=350,height=400")
}

function popup(filename, width, height) {
	window.open(filename, "blank", "toolbar=no, width=" + width + ", height=" + height + "")
}
//-->
