<!--
function framePic(imageName,imageWidth,imageHeight,alt) {
newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left=50,top=50");
newWindow.document.open();
newWindow.document.write('<HTML><TITLE>'+alt+'</TITLE><BODY bgcolor="#FFFFFF" LEFTMARGIN="0" TOPMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0" onBlur="self.close()">'); 
newWindow.document.write('<IMG SRC='+escape(imageName)+' WIDTH='+imageWidth+' HEIGHT='+imageHeight+' ALT='+alt+'>'); 
newWindow.document.write('</BODY></HTML>');
newWindow.document.close();
newWindow.focus();
}

function focusform()
{
	if (document.forms.length > 0){	
		var f=document.forms[0];
		for(i=0; i<f.length; i++)
		{
			var n = f.elements[i].type;			
			var m = n.match(/hidden/gi);
			if (!m)
			{
				f.elements[i].focus();
				break;													
			}			
		}
	}		
}
//-->