function open_window(img,img_x,img_y) {
//-------------------------------------------------------------------------
// Author : x-idea.de
// Datum  : 2003
// Email  : info@x-idea.de
// Aufruf : <a href="javascript:open_window('test.jpg',400,380);">
// 1.bild | 2.bild->X | 3.bild->Y
//-------------------------------------------------------------------------
// Config
//-------------------------------------------------------------------------

    var path    = "img/";                  				        // pfad des bildes
    var title   = "Trident - Das zahntechnische Labor";   // titel des fensters
    var bgcolor = "#990099";                                    // bgcolor
    
//-------------------------------------------------------------------------
// DO NOT EDIT
//-------------------------------------------------------------------------
    var win_x = eval(parseInt(img_x) + 10);	    // breite des fenters
    var win_y = eval(parseInt(img_y) + 45);		// höhe des fensters
    var img;			// bild name
    var img_x;			// bild breite
    var img_y;			// bild höhe
    var tab_y = eval(parseInt(img_y) + 17);
    
    myWin= open("", "displayWindow","width=" + win_x + ",height=" + win_y + ",status=no,toolbar=no,menubar=no");
    myWin.document.open();
    myWin.document.writeln("<html><head><title>"+ title +"</title>");
    myWin.document.writeln("<style TYPE=\"text/css\">");    
    myWin.document.writeln(".anzeige1 \{font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10pt; color:#FFFFFF; background-color: "+ bgcolor +"; layer-background-color: "+ bgcolor +";position:absolute; left:5px; top:0px; width:"+ img_x +"px; height:\"100%\"; z-index:1; }");
    myWin.document.writeln("A         \{font-family:Verdana, Arial, Helvetica, sans-serif; font-size:9pt;  color:#FFFFFF; text-decoration:none; } ");
    myWin.document.writeln("<\/style>");    
    myWin.document.writeln("<script language=\"JavaScript\">");    
    myWin.document.writeln("function hideLayer()\{ ");  
    myWin.document.writeln("    if(document.layers)         \{ document.layers.Layer1.visibility = \"hidden\"; } ");
    myWin.document.writeln("    if(document.all)            \{ document.all.Layer1.style.visibility = \"hidden\"; } ");
    myWin.document.writeln("    if(document.getElementById) \{ document.getElementById(\"Layer1\").style.visibility = \"hidden\"\; } ");
    myWin.document.writeln("}");    
    myWin.document.writeln("<\/script>");
    myWin.document.writeln("</head><body bgcolor=\""+ bgcolor +"\" marginwidth=5 leftmargin=5 marginheight=5 topmargin=5 onLoad=\"hideLayer()\" >");    
    myWin.document.writeln("<div id=\"Layer1\" class=\"anzeige1\">Bild wird geladen...");
    myWin.document.writeln("  <table border=0 width=\"100%\" height=" + tab_y + "><tr><td align=center valign=middle><img src=\"img/ticker.gif\" width=40 height=40><\/td><\/tr><\/table>");
    myWin.document.writeln("<\/div>");
    myWin.document.writeln("<img src=\"" + path + img + "\" width=" + img_x + " height=" + img_y + " vspace=2>");
    myWin.document.writeln("<div align=\"center\"><a href=\"javascript:window.close()\">Schliessen</a></div>");
    myWin.document.writeln("</body></html>");    
    myWin.document.close();
}
