// process to open a new window from the main page

var remote = null;
function openWindow(loc) {
    remote = window.open(loc,"newWin","width=640,height=480,scrollbars=yes,resizable=yes,toolbar=yes,screenX=1,screenY=1,alwaysRaised=yes");
if (remote.opener == null) {
    remote.opener = window;
    remote.opener.name = "opener"; }
}