function firstfocus(){
	var i
	if (document.forms[0]){
		//i=document.forms[0].getElementsByTagName('SELECT')
		i=document.forms[0].elements[0]
		//alert(i.tagName)
		if(i.tagName=='INPUT' && i.type=='text'){
			document.forms[0].elements[0].focus();
			document.forms[0].elements[0].select();
		
		}
		//if(i.tagName=='SELECT'){
		//	document.forms[0].elements[0].focus();
		//}
		if(i.tagName=='TEXTAREA'){		
			document.forms[0].elements[0].focus();
			//document.forms[0].elements[0].select();
		
		}
		//alert (i.tagName)
	}
}
