
//*********************** GLOBAL FUNCTIONS ***********************//
//****************************************************************//


function dropMenuSelect(targ,selObj,restore){ 
//alert('dsds');
  mapClick(selObj.options[selObj.selectedIndex].value);
}
function mapClick(stateID){
	//alert(stateID);
	expandcontent(stateID);
}
function HideContent(d) {
	document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
	document.getElementById(d).style.display = "";
}


// ----------------------- OPEN POPUP WINDOWS -----------------------//
function open_window(link, title, width, height){
	//	alert(link+', '+title);
	window.open(link, title, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height);
}




