function popWindow2(theLink) {
		var initialX =	100;
		var initialY = 	100;
		if (navigator.appName == "Netscape") {
			theWindow = open( theLink, "Lookup", "width=500,height=560," +
					"screenX=" + initialX + ",screenY=" + initialY +
					",scrollbars,resizable");
			theLink.focus(); // make sure our new window is in front
		} else {
			theWindow = open( theLink, "Lookup", "width=500,height=560" +
				",left=" + initialX + ",top=" + initialY +
				",scrollbars,resizable");
		}
		theWindow.opener = self;
}
function popWindow1(theLink) {
		var initialX =	100;
		var initialY = 	100;
		if (navigator.appName == "Netscape") {
			theWindow = open( theLink, "Lookup", "width=380,height=446," +
					"screenX=" + initialX + ",screenY=" + initialY +
					",scrollbars,resizable");
			theLink.focus(); // make sure our new window is in front
		} else {
			theWindow = open( theLink, "Lookup", "width=380,height=446" +
				",left=" + initialX + ",top=" + initialY +
				",scrollbars,resizable");
		}
		theWindow.opener = self;
}
