<!-- 
function newone(){ 
	var j; 
	var url; 
	var code; 
	code=document.tmpfrm.stdcode.value; 
	url =    "STD_codes/Stdcode1"; 
	url = url + "stdcode="+code; 
	document.tmpfrm.stdcode.value="" ;
	window.open(url,"newwindow","menubar=0,height=200,width=400,resizable=no,alwaysRaised=yes,left=2,top=2,scrollbars=no"); 
} 

function state_onchange()
{	
	var j; 
	var url; 
	var code; 
	code=document.form1.state.options[document.form1.state.selectedIndex].value; 
if(code!=0)
{
	url = "STD_codes/Stdcode1"; 
	url = url + "state="+code+".htm"; 
	
	window.open(url,"newwindow","menubar=0,height=200,width=400,resizable=yes,alwaysRaised=yes,left=2,top=2,scrollbars=yes"); 

}
}

//--> 
