var datei;
var bild;
var titel;

function drucke(datei)
{
   F1 = open(datei,"Druckansicht","width=10,height=10,screenX=3000,screenY=3000");
   F1.print();
   alert("Datei&nbsp;" + datei + "&nbsp;wird gedruckt...");
   F1.close();
}


function OeffneFenster(datei,titel)
{
Fenster = window.open("about:blank","","width=640,height=480,status=no,left=200,top=100,resizable=no,location=no,scrollbars=no,toolbar=no");
Fenster.document.write("<html><head><title>" + titel + "</title></head>");
Fenster.document.write("<body marginwidth='0' marginheight='0' topmargin='0' leftmargin='0'>");
Fenster.document.write("<a href='javascript:self.close()' border='0'><img src=" + datei + " border='0'></a>");
Fenster.document.write("</body></html>");

}



function ZeigeBild(bild,titel)
{

document.write("<html><head><title>" + titel + "</title></head>");
document.write("<link rel=stylesheet type='text/css' href='style.css'>");
document.write("<body bgcolor='#000000' link='#ffffff'>");
document.write("<center><br><br><img src='" + bild + "' alt=" + bild + ">");
document.write("<br><br><font face='Arial,Verdana'><b><a href='javascript:history.back()'>Zur&uuml;ck</a>");
document.write("</body></html>");
}


function ZeigeFlash(bild,titel)
{
document.write("<html><head><title>" + titel + "</title></head>");
document.write("<link rel=stylesheet type='text/css' href='style.css'>");
document.write("<body bgcolor='#000000' link='#ffffff'>");
document.write("<center><br><br><OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0' WIDTH=640 HEIGHT=480><PARAM NAME=movie VALUE='" + bild + "'> <PARAM NAME=quality VALUE=high><PARAM NAME=loop VALUE=true><PARAM NAME=bgcolor VALUE=#000000> <EMBED src='" + bild + "' quality=high bgcolor=#000000  WIDTH=640 HEIGHT=480 TYPE='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'></EMBED></OBJECT>");
document.write("<br><br><font face='Arial,Verdana'><b><a href='javascript:history.back()'>Zur&uuml;ck</a>");
document.write("</body></html>");
}


function ZeigeFlashKlein(bild,titel)
{
document.write("<html><head><title>" + titel + "</title></head>");
document.write("<link rel=stylesheet type='text/css' href='style.css'>");
document.write("<body bgcolor='#000000' link='#ffffff'>");
document.write("<center><br><br><OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0' WIDTH=360 HEIGHT=270><PARAM NAME=movie VALUE='" + bild + "'> <PARAM NAME=quality VALUE=high><PARAM NAME=loop VALUE=false><PARAM NAME=bgcolor VALUE=#000000> <EMBED src='" + bild + "' quality=high bgcolor=#000000  WIDTH=360 HEIGHT=270 TYPE='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'></EMBED></OBJECT>");
document.write("<br><br><font face='Arial,Verdana'><b><a href='javascript:history.back()'>Zur&uuml;ck</a>");
document.write("</body></html>");
}


function OeffneFensterBackup(datei,titel)
{
F2 = open(datei,"","width=640,height=480,status=no,screenX=0,screenY=0,resizable=no");

}