function open_window()
{
var win = navigator.appVersion.indexOf("Win") != -1;
var mac = navigator.appVersion.indexOf("Mac") != -1;
var ie = navigator.userAgent.indexOf("MSIE") != -1;
var nn = navigator.appName.indexOf("Netscape") != -1;
var w = screen.width;
var h = screen.height;
 if(win)
 {
  if(ie)
  {
   new_win = open('LucreHome.html','Lucre','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes');
   new_win.moveTo(0,0);
   new_win.resizeTo(screen.availWidth,screen.availHeight);
   new_win.focus();
  }
  else
  {
   new_win = open('LucreHome.html','Lucre','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes');
   new_win.moveTo(0,0);
   new_win.resizeTo((screen.availWidth-12),(screen.availHeight-30));
   new_win.focus();
  }
 }
 if(mac)
 {  
  if(ie)
  {
   new_win = open('LucreHome.html','Lucre','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width='+w+',height='+h);
   new_win.moveTo(0,0);
   new_win.resizeTo(screen.availWidth,screen.availHeight-20);
   new_win.focus();
  }
  else
  {   
   new_win = open('LucreHome.html','Lucre','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width='+(w-32)+',height='+(h-63));
   new_win.moveTo(0,0);
   new_win.resizeBy(18,16);
   new_win.focus();
  }
 }
}
