
<!--

function GP_AdvOpenWindow(theURL,target,size) { //v2.0

  features='fullscreen=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=550,height=550'
  ignorelink = 'ignoreLink';
  winAlign = 'center';

     w = screen.availWidth; h = screen.availHeight;
     topPos = (h-size)/2; leftPos = (w-550)/2;
     features += (features.length > 0 ? ',' : '') + 'top=' + topPos+',left='+leftPos;

  AdminWin = window.open(theURL,target,features);
  AdminWin.resizeTo(550,size);
  AdminWin.focus();

  document.MM_returnValue = (ignorelink && ignorelink != "") ? false : true;
}

function GP_win(URL,target,size) { //v2.0

  features='fullscreen=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=275,height=60'

  ignorelink = 'ignoreLink';
  winAlign = 'center';

     w = screen.availWidth; h = screen.availHeight;
     topPos = (h-size)/2; leftPos = (w-275)/2;
     features += (features.length > 0 ? ',' : '') + 'top=' + topPos+',left='+leftPos;

  ExtraWin = window.open(URL,target,features);
  ExtraWin.resizeTo(275,size);
  ExtraWin.focus();

  document.MM_returnValue = (ignorelink && ignorelink != "") ? false : true;
}

function alterinfo(newvalue,pos){
        info = eval('document.form.elements[pos]');
        info.value = newvalue;
}

function closewin(){ //v2.0
   if (AdminWin && AdminWin.open && !AdminWin.closed){ AdminWin.close()}
   if (ExtraWin && ExtraWin.open && !ExtraWin.closed){ ExtraWin.close()}
}

-->

