win1 = null;function openWindow(id){	if (win1 == null || navigator.appName != "Netscape" || win1.closed)	{	 	opt  = "dependent=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width=440,height=380";		if (navigator.appVersion.substring(0, 1) >= 4)		{			xpos = screen.availWidth/3-250;		 	ypos = screen.availHeight/3-150;			opt += ",screenX="+xpos+",screenY="+ypos+",left="+xpos+",top="+ypos;		}		win1 = window.open(id,"win1",opt);		win1.focus();	}	else	{		win1.location = id;		win1.focus();	}}function ok(){	return true;}window.onerror = ok;
