// -- 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)
}


//---- show/hide div on contact.php (for "other" field):
function showExtra(theCombo) {
	//get a reference to the control
	var myText = document.getElementById("otherInfo");
	
	//now check to what the new selection is
	if (theCombo.options[theCombo.selectedIndex].value == "Other-ref") {
		myText.style.display = "";
	}
	else {
		myText.value="";
		myText.style.display = "none";
	}
}
	
