var win=null;
// Fenster f&uuml;r Grossdarstellung
function fenster(win_a,w,h) 
{
 if (win != null) {
	if (win.closed == false) win.close();
 }
 win=window.open(win_a+".htm",'artikel','width='+w+',height='+h+',resizable=yes,status=no,locationbar=yes,scrollbars=yes,left=40,top=40');
 win.focus();
}
function bild(bild,w,h,l,t) 
{

if (win != null) {
	if (win.closed == false) win.close();
}
 
 win=window.open('','win','width='+w+',height='+h+',resizable=yes,status=no,locationbar=yes,scrollbars=yes,left='+l+',top='+t);
win.document.writeln('<Html><HEAD><link rel=stylesheet type="text/css" href="css/format.css"><STYLE TYPE="text/css">body { margin-left:0 px;margin-top:0 px;margin-right:0 px;margin-bottom:0 px}</STYLE></HEAD><Body BGcolor="#66CC66" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" TEXT="#ffffff" VLINK="#3C6D56" LINK="#3C6D56" ALINK="#3C6D56"><DIV ALIGN="center"><IMG SRC="images/'+bild+'" border="0" vspace="5" hspace="5"><BR><img src="images/pfeil.gif" width="34" height="12" hspace="0" vspace="0" border="0" alt=""><A HREF="javascript:self.close()" class="green">Fenster schliessen</A></DIV></BODY></HTML>');
win.focus;
}

