function popWindow3(theLink) {
		var initialX = 100;
		var initialY = 100;
		if (navigator.appName == "Netscape") {
			theWindow = open( theLink, "Lookup", "width=325,height=200," +
					"screenX=" + initialX + ",screenY=" + initialY +
					",scrollbars,resizable");
			theLink.focus(); // make sure our new window is in front
		} else {
			theWindow = open( theLink, "Lookup", "width=600,height=400" +
				",left=" + initialX + ",top=" + initialY +
				",scrollbars,resizable");
		}
		theWindow.opener = self;
}	
-->
