<!--

function openWin(url, width, height) { 
windowName = page+"newwindow";
params = "toolbar=0,";
params += "location=0,";
params += "directories=0,";
params += "status=0,";
params += "menubar=1,";
params += "scrollbars=1,";
params += "resizable=1,"; 
params += "width="+width+",";
params += "height="+height;
win = window.open(url, windowName, params);
win.opener.name = "opener";
win.focus();
}



function makeRemote() {

if (navigator.appVersion.indexOf("Mac")=="-1") {
width=260;
height=320;
}
else {
width=250;
height=300;
}

remote = window.open("","remotewin","width="+width+",height="+height+",menubar=yes,status=no,screenY=5,screenX=5");
remote.location.href = "contact.html";
    if (remote.opener == null) remote.opener = window; 
remote.opener.name = "opener";
}



// -->
