
function setfocus(objectid) 
{ 
	if(document.getElementById(objectid)) 
		{ 
			document.getElementById(objectid).focus(); 
		} 
}

