new_Window = null;

function bix_URLOpen2(theURL)
{
//   w = 307;
//   h = 440;
   w = parseInt(screen.width*0.4);
   h = screen.height - 100;
   var str = theURL;
   bix_WindowClose2();
   bix_WindowOpen2(str);
   //setTimeout("bix_WindowOpen2(str)",1);
}
	

//Ansicht-Fenster auf jeden Fall schliessen, wenn noch offen
function bix_WindowClose2()
{
   if (new_Window != null)
     if (!new_Window.closed)
       new_Window.close();
}


function bix_WindowOpen2(strURL)
{
   var theURL = strURL
   //var win_left = parseInt((screen.width-w)*0.5);
   //var win_top = parseInt((screen.height-h)*0.5);
   var win_left = screen.width-w-15;
   var win_top = 0;

   var features = 'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,left='+win_left+',top='+win_top+',height='+h+',width='+w;
   new_Window = window.open(theURL,'gaestebuch',features)
//   new_Window = window.open('blank.htm','gaestebuch',features)
//   new_Window.location.href = theURL

}

