	/************************************************
	Submit the form to the correct asp page on the merger pages
	*************************************************/
	function mysubmitForm(strTarget){
		//get value of select box and append that to sh_merger_XX.asp
		pagename=document.thisForm.company.value;
		
		thepage='sh_merger_'+pagename+'.asp';
		
		document.thisForm.action = thepage;	//Set the target asp to post the info to
		document.thisForm.submit();			//Post the information
	}

		

