// JavaScript Document
function init()
{
lnks = document.getElementsByTagName("a");
for(i=0; i<lnks.length; i++) {
lnks[i].onfocus = new Function("if(this.blur)this.blur()");
}
}
onload = init;

var newwin;
function NGPop(winurl,winname,winfeatures)
{
 //new window gets launched
 newwin = window.open(winurl,winname,winfeatures);
    
 //new window gets moved into position
 newwin.moveTo(Math.round((screen.availWidth-750)/2),Math.round(((screen.availHeight-400)/3)));
}