function popWindow2(theLink){
	var initialX = 100;
	var initialY = 100;
	if(navigator.appName == "Netscape") {
		var theWindow = open(theLink, "Lookup", "width=500, height=560"+
						 "screenX=" + initialX + ",screenY="+ initialY +
						 ",scrollbars,resizable");
		//theLink.focus();
	} else {
		var theWindow = open(theLink, "Lookup", "width=500, height=560"+
						 "screenX=" + initialX + ",screenY="+ initialY +
						 ",scrollbars,resizable");
	}
	theWindow.opener = self;
	theWindow.focus();
}

function popWindow3(theLink){
	var initialX = 100;
	var initialY = 100;
	if(navigator.appName == "Netscape") {
		theWindow3 = open(theLink, "Lookup3", "width=520, height=450"+
						 "screenX=" + initialX + ",screenY="+ initialY +
						 ",scrollbars,resizable");
		//theLink.focus();
	} else {
		theWindow3 = open(theLink, "Lookup3", "width=520, height=450"+
						 "screenX=" + initialX + ",screenY="+ initialY +
						 ",scrollbars,resizable");
	}
	theWindow3.opener = self;
	theWindow3.focus();
}