// Copyright (C) 2000 KONTRAST interactive

function MM_openBrWindow(theURL,winName,features) { //v2.0
fenster = parent.Zoomfenster;
if ((fenster) && (! fenster.closed)) {fenster.close();}
parent.Zoomfenster = window.open(theURL,winName,features);
}

var wind;

function Zpic(img_bez, img_url, img_width, img_height){  
	
	
	if ((wind) && (! wind.closed)) {wind.close();}
	//parent.Zoomfenster = window.open(theURL,winName,features);
	
  wind = open("","zpic","width=" + (img_width + 32) + ",height=" + (img_height + 64) +",toolbar=0,location=0,directories=0,status=0,menubar=0," + "scrollbars=0,resizable,dependent")  

img_title = "Produkt-Popup";

    with(wind.document)  {
    open("text/html")   
    writeln("<HTML>")
    writeln("<HEAD><TITLE>" + img_title + "</TITLE>");
    writeln("<link rel=\"stylesheet\" type=text/css href=../../css/tls.css>");  
    writeln("<BODY BGCOLOR=\"#dcdcdc\">")
    writeln("<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH=\"100%\" HEIGHT=\"100%\">")
     writeln("<TR><TD ALIGN=left VALIGN=CENTER><b>"+img_bez+"</b></td></tr>");
    writeln("<TR><TD ALIGN=CENTER VALIGN=CENTER><IMG SRC=" + img_url + " WIDTH=" + img_width +            " HEIGHT=" + img_height +
            " HSPACE=0 VSPACE=0 ALT=\"" + img_title + "\"></TD></TR>")
    write("<TR><TD ALIGN=RIGHT VALIGN=BOTTOM>")
    write("<A HREF=\"javascript:self.close()\"><IMG SRC=\"images_nav/close.gif\" border=\"0\"></A>")
    writeln("</TD></TR>")    
    writeln("</TABLE>")
    writeln("</BODY></HTML>")    
    close()  }  
     wind.focus()
}


function ZweiFrames(URL1,F1,URL2,F2)
   {  
    parent.frames[F1].location.href=URL1;
    parent.frames[F2].location.href=URL2;
   }

