var serverPath, wWidth, wHeight,newWindow,LeftPosition,TopPosition;

serverPath="http://scotthyver.com/cgi-bin/got/";
wWidth=300;
wHeight=310;


function got(term)
{
   LeftPosition = (screen.width) ? (screen.width-wWidth)/2 : 0;
   TopPosition = (screen.height) ? (screen.height-wHeight)/2 : 0;
   newWindow=window.open(serverPath+'got.cgi?id='+term,"","width="+wWidth+",top="+TopPosition+",left="+LeftPosition+", height="+wHeight+",toolbar=no,menubar=no,status=no,location=no,directories=no,scrollbars=auto,resizable=no");
}