<!--
function OpenTest (FileName,WindowName) 
{
FileName="cgi-bin/filtering.html"
if(form1.userid.value=="tscience" && form1.pw.value=="tscience")
		{
	WindowFeature="Resizable=No,ScrollBars=No,MenuBar=No,Directories=No,ToolBar=No,Location=No,Status=No,Width=700,height=600,ScreenX=30,ScreenY=30,Top=0,Left=0"
	newWindow=open(FileName,WindowName,WindowFeature);
			if (newWindow.opener == null) { newWindow.opener = self; }
			if (newWindow.focus) { newWindow.focus(); }
		}
		
		else {
		alert("Your user ID and password is not correct.");
		//return false;
		}
	//form1.submit()
	}
//-->
