<!--
var n=parseInt(navigator.appVersion);
isNetscape=navigator.appName.indexOf('Netscape')>=0;
isExplorer=navigator.appName.indexOf('Explorer')>=0;

if(n>=3) self.focus();

function pupWindow(location) {
ww=548;  wh=548;
positionCode='';
if(n>=4) {sw=screen.width; sh=screen.height;
wbx = Math.round((sw-ww)/2);  wby = Math.round((sh-wh)/2);
if(isExplorer) positionCode='left='+wbx+',top='+wby+',';
if(isNetscape) positionCode='screenX='+wbx+',screenY='+wby+',';
}

newWindow=window.open(location,'Device',
'width='+ww+',height='+wh+','+
positionCode+
'toolbar=0,'+
'scrollbars=0,'+
'resizable=0');
if(isNetscape && n>=3) newWindow.focus();
}

function runLink(location) {
if(goLocation!='') {
newWindow=window.open(location, "Device");
if(isNetscape) newWindow.focus();
}
//    parent.window.close();
}//-->