<!--
	function doPreLoadMap(){
		var the_images = new Array('images/regional/west_over.gif','images/regional/west_over2.gif','images/regional/west_over3.gif','images/regional/midwest_over.gif','images/regional/east_over.gif','images/regional/east_over2.gif','images/regional/south_over.gif','images/regional/south_over2.gif','images/regional/south_over3.gif','images/regional/south_over4.gif');
		PreloadMap(the_images);
	}
	
	function PreloadMap(the_images_array){

		for(loop = 0; loop < the_images_array.length; loop++){
   			var an_image = new Image();
			an_image.src = the_images_array[loop];
		}
	}
	
	function setSouth(iName1,iName2,iName3,iName4,DaSrc1,DaSrc2,DaSrc3,DaSrc4){
		window.document[iName1].src=DaSrc1;		
		window.document[iName2].src=DaSrc2;	
		window.document[iName3].src=DaSrc3;	
		window.document[iName4].src=DaSrc4;	
	}
	
	function setWest(iName1,iName2,iName3,DaSrc1,DaSrc2,DaSrc3){
		window.document[iName1].src=DaSrc1;		
		window.document[iName2].src=DaSrc2;
		window.document[iName3].src=DaSrc3;	
	}
	
	function setEast(iName1,iName2,DaSrc1,DaSrc2){
		window.document[iName1].src=DaSrc1;		
		window.document[iName2].src=DaSrc2;
	}
	
	function setMid(iName1,DaSrc1){
		window.document[iName1].src=DaSrc1;		
	}

	function Jump(){
		var id = window.document.form1.companies.selectedIndex;
		var the_selected = window.document.form1.companies.options[id].value; 
	//	window.document.location="shareholder_template.asp?id=" + the_selected;
		window.open("shareholder_template.asp?id=" + the_selected,"DaWin","height=500,width=540,menubar=0,resizable=1,scrollbars=1, status=0,titlebar=0,toolbar=0,left=0,top=0");
	}
	
	function Map(loc){
		var daLoc = loc;
		window.document.location="regional_companies.asp?m=Region&l=" + daLoc;
	}
	
//	function ZipSearch(){
		//window.document.form2.submit();
//		var zip = window.document.form2.zip.value;
		//alert(zip);
//		window.document.location="regional_companies.asp?siz=" + zip;
//	}
	function KeySearch(){
		var key = window.document.form1.key.value;
		window.document.form1.submit();
	}
//-->