//*******
//
// /common/glossary.js
//
//******
 
function glossary(intID) {
//www.leatzowinsurance.com 
//http://<%= request.serverVariables("SERVER_NAME") %>
URL="/misc/glossary.asp?id="+intID;
strAttr="width=414,height=420," +
	"top=80,left=480," +
	"toolbar=0," +
	"location=0," +
	"directories=0," + 
	"status=0," + 
	"member=0," + 
	"scrollbars=0," + 
	"resizable=0";
remote=window.open( "", "Glossary", strAttr);
remote.location.href=URL;
if (remote.opener==null) remote.opener=window;
//else window.alert("else triggered in remote.opener==null statement");

remote.focus();

}

function look() {
remote.focus();
}
