function NewWindow(mypage, myname, w, h, scroll, top, left, res) {
	winprops = 'height='+h+',width='+w+',top,left,scrollbars='+scroll+',resizable='+res+''
	win = window.open(mypage, myname, winprops)
	//winprops = 'height='+h+',width='+w+',top,left'
	//win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
// 'height='+h+',width='+w+',top,left,
}

function printPage() {
  if (pr) // NS4, IE5
    window.print()
  else if (da && !mac) // IE4 (Windows)
    vbPrintPage()
  else // other browsers
    alert("Es tut uns leid: Dieser Browser unterst&uuml;tzt diese Funktion nicht.");
  return false;
}


