//all javascripts that are SITE SPECIFIC, and probably cannot be reused in other site, go in this file

//alert('site.js up');

function goSelectPage(selectList){
	//alert('in goSelectPage');
	menuObj=findObjectPath(selectList);
	goPage=menuObj.options[menuObj.selectedIndex].value;
	if(goPage!="none"){window.location=goPage;}
}

