<!-- 
  function PopUpNewWindow(targetURL)
{
  leftPos=0
  if(screen) {leftPos = screen.width-530}
	 NewWindow =
		window.open(targetURL,'',
		'width=500,height=500,left='+leftPos+',top=20,locationbar=yes,menubar=no,scrollbars=no,status=no,resizable=yes');
  	NewWindow.focus();
  }
  
  
    function fahrplan(targetURL)
{
  leftPos=0
  if(screen) {leftPos = screen.width-750}
	 NewWindow =
		window.open(targetURL,'',
		'width=710,height=700,left='+leftPos+',top=20,locationbar=yes,menubar=no,scrollbars=yes,status=no,resizable=yes');
  	NewWindow.focus();
  }
//-->