//Script zum aufrufen von neuen Fenstern
//Version 1.0C
//© 2003 by Denis Falkenberg


function NewWindow(URL,WIDTH,HEIGHT) 
{ 
	top.name = "win"; 
	var popupURL = URL; 
	var scr_width = screen.width;
        var scr_height = screen.height;
        var pos_width = (scr_width/2) - (WIDTH/2);
        var pos_height = (scr_height/2) - (HEIGHT/2);
	var win = window.open("","NewWindow",'toolbar=no,location=no,directories=no,status=no,toolbars=no,menubar=no,scrollbars=no,resizable=no,left=' + pos_width + ',top=' + pos_height + ',width=' + WIDTH + ',height=' + HEIGHT + ''); 
	win.document.close();
	win.document.open("text/html");
	win.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">');
	win.document.writeln('<html>');
	win.document.writeln('<head>');
	win.document.writeln('<title>Vollbild</title>');
	win.document.writeln('<META HTTP-EQUIV="imagetoolbar" CONTENT="no">'); 
	win.document.writeln('<\/head>');
	win.document.writeln('<body leftmargin="0" marginheight="0" marginwidth="0" topmargin="0">');	
	win.document.writeln('<a href="#" onclick="self.close()"><img src="' + URL + '" border="0" alt="Klicke zum Schließen"></a>');
	win.document.writeln('<\/body>');
	win.document.writeln('<\/html>');
	win.document.close();
	//if( navigator.appName.substring(0,8) == "Netscape" ) 
	//{ 
	//	popup.location = popupURL; 
	//	popup.opener = self; 
	//} 
} 

function PrintPreview(URL,WIDTH,HEIGHT) 
{ 
	top.name = "win"; 
	var popupURL = URL; 
	var scr_width = screen.width;
        var scr_height = screen.height;
        var pos_width = (scr_width/2) - (WIDTH/2);
        var pos_height = (scr_height/2) - (HEIGHT/2);
	var win = window.open(URL,"NewWindow",'toolbar=yes,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,left=' + pos_width + ',top=' + pos_height + ',width=' + WIDTH + ',height=' + HEIGHT + ''); 
	/*win.document.close();
	win.document.open("text/html");
	win.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">');
	win.document.writeln('<html>');
	win.document.writeln('<head>');
	win.document.writeln('<title>Vollbild</title>');
	win.document.writeln('<META HTTP-EQUIV="imagetoolbar" CONTENT="no">'); 
	win.document.writeln('<\/head>');
	win.document.writeln('<body leftmargin="0" marginheight="0" marginwidth="0" topmargin="0">');	
	win.document.writeln('<a href="#" onclick="self.close()"><img src="' + URL + '" border="0" alt="Klicke zum Schließen"></a>');
	win.document.writeln('<\/body>');
	win.document.writeln('<\/html>');
	win.document.close();*/
	//if( navigator.appName.substring(0,8) == "Netscape" ) 
	//{ 
	//	popup.location = popupURL; 
	//	popup.opener = self; 
	//} 
}


function VideoPopUp()
{

// page enthält die URL der HTML-Seite für das Fenster
top.name = "win";
var video = "videos/flash/flvplayer.html";
var settings = "width=330,height=250,locationbar=no,scrollbars=no,menubars=no,toolbars=no,resizable=no";
var win = window.open("videos/flash/flvplayer.html", "APOTHEKEN-Kurier Video Player", 'width=330,height=250,locationbar=no,scrollbars=no,menubars=no,toolbars=no,resizable=no');
}

