// security technologies

function rollMap(theURL, theMap) {
	document.MyMap.src = theURL
	document.MyMap.useMap = theMap
}

//  selects an option on dropdown menu, go to the selected region.
function selectRegion() {
   var selectedItem = document.mapa.parentRegion.selectedIndex;
   var selectedItemValue = document.mapa.parentRegion.options[selectedItem].value;

   if (selectedItem != 0) {
       window.location="ssc_contact.asp?Location="+selectedItemValue;
   }
}

