<!--
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='+imageName+' WIDTH='+imageWidth+' HEIGHT='+imageHeight+' ALT='+alt+'>'); 
newWindow.document.write('</BODY></HTML>');
newWindow.document.close();
newWindow.focus();
}

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