/*==========================================================================*/
/* Live-Portal.de, Copyright (c) 2003-2008 Patrick Simon                    */
/*==========================================================================*/

// Neues Fenster öffnen
function OpenWnd(page, w, h) { 
  var win_width  = w;
  var win_height = h;
  var win_left   = (screen.width  - win_width) / 2;
  var win_top    = (screen.height - win_height) / 2;
  var str        = ''; 

  str += "toolbar=no,location=no,status=no,resizable=yes,dependent=yes,scrollbars=no";
  str += ",width="  + win_width;
  str += ",height=" + win_height;
  str += ",left="   + win_left;
  str += ",top="    + win_top;

  window.open(page,'newwnd',str);

}

// Messages ausgeben und verstecken
function HideMessage() {
//  document.getElementById("div1").style.top  = -200;	
} 
