<!--

function extraWindow(theURL,windowname,pos){ 
  w = 480;
  h = 600;
  if (NS4){deltax=-20; deltay=0;}
  if (IE4){deltax=-20; deltay=-30;}
  if(pos=="ru"){x0=screen.availWidth-w+deltax; y0=screen.availHeight-h+deltay;}
  if(pos=="ro"){x0=screen.availWidth-w+deltax; y0=0;}
  if(pos=="lo"){x0=0; y0=0;}
  if(pos=="lu"){x0=0; y0=screen.availHeight-h+deltay;}  
  win=window.open(theURL,windowname,'toolbar=no,status=no,scrollbars=yes,resizable=yes,width='+w+',height='+h+',dependent=yes');
  win.moveTo(x0,y0);
  win.focus(); 
}
function extraWindow1(theURL){ 

  if (navigator.appName.indexOf('Netscape') != -1){deltax=0; deltay=0;}
  if (navigator.appName.indexOf('Microsoft') != -1){deltax=-20; deltay=-30;}

  w=300; h=400; pos="ro";

  if(pos=="ru"){x0=screen.availWidth-w+deltax; y0=screen.availHeight-h+deltay;}
  if(pos=="ro"){x0=screen.availWidth-w+deltax; y0=0;}
  if(pos=="lo"){x0=0; y0=0;}
  if(pos=="lu"){x0=0; y0=screen.availHeight-h+deltay;}  
  
  singlewin=window.open(theURL,'single','toolbar=yes,status=no,scrollbars=yes,resizable=yes,width='+w+',height='+h+',dependent=yes');
  singlewin.moveTo(x0,y0);
  singlewin.focus(); 
}
//-->
