<!--
/* (c) Scientec Internet Applications + Media GmbH - www.scientec.de */

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 searchWindow(theURL,windowname,pos){
  w = 550;
  h = 500;
  if (NS4 || NS6){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();
}
//-->
