// JavaScript Document
<!-- All original javascript copyright Tech-nique (Europe) Limited
var newwin = new Object();
newwin.closed = true;

function NewWindow(url, winname, w, h, scroll, resize) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
if (!newwin.closed) newwin.close();
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='+resize+',status=yes'
newwin = window.open(url, winname, winprops)
if (parseInt(navigator.appVersion) >= 4) { newwin.window.focus(); }
}

function exit() {
if (!newwin.closed) newwin.close();
}
//-->