//open CMS admin window:
function OpenAdmin(theURL){
	LeftPosition = (screen.width) ? (screen.width)-510 : 0;
	cmsheight = (screen.height) ? (screen.height)*.75 : 550;
	settings = 'height='+cmsheight+',width=500,top=0,left='+LeftPosition+',scrollbars=yes,resizable=yes'
	win = window.open(theURL,'viewit',settings)
}

// -- required form fields for Contact page:
function checkFields() {
missinginfo = "";
if (document.form.name.value == "") {
missinginfo += "\n     -  name";
}
if ((document.form.email.value == "") || 
(document.form.email.value.indexOf('@') == -1) || 
(document.form.email.value.indexOf('.') == -1)) {
missinginfo += "\n     -  valid email address";
}
if(document.form.message.value == "") {
missinginfo += "\n     -  message";
}
if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"Please fill in the following fields:\n" +
missinginfo + "\n_____________________________" +
"\nThanks!";
alert(missinginfo);
return false;
}
else return true;
}