function onLoad() {
	if (document.forms.length > 0 ) {
		for (i=0; i<document.forms[0].elements.length; i++) {
			if ((document.forms[0].elements[i].type == "hidden") || (document.forms[0].elements[i].disabled)) {
			} else {
			  if (document.forms[0].elements[i].type == "text")
			  {
				  //document.forms[0].elements[i].focus();
				  break;
				}
			}		
		}
	}		
}


function popUp(url) {
	sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
	self.name = "mainWin";
}

function popDimension(url, nHeight, nWidth) {
	sealWin=window.open(url,"win",'toolbar=1,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width='+nWidth+',height='+nHeight);
	self.name = "mainWin";
}



