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,beschr) 
{

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.write('<Html><HEAD><link rel=stylesheet type="text/css" href="css/format.css"></HEAD><Body class="y"><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" width="100%" height="100%"><TR><TD width="100%" height="100%" align="center" valign="middle">');
win.document.write('<TABLE BORDER="0" CELLSPACING="0" cellpadding="1" bgcolor="#DCDCDC"><TR><TD bgcolor="#DCDCDC" valign="top" align="center"><IMG SRC="'+bild+'" vspace="0" hspace="0">');
if (beschr!="") {
	win.document.write('<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0" bgcolor="#DCDCDC"><TR><TD bgcolor="#DCDCDC" valign="top" align="center"><span class="grey">'+beschr+'</span></TD></TR></TABLE>');
}
win.document.write('</TD></TR></TABLE><img src="images/shim.gif" width="1" height="5" hspace="0" vspace="0" border="0" alt=""><BR><P CLASS="navi4"><img src="images/pointl.gif" width="3" height="7" hspace="5" vspace="0" border="0" alt=""><A HREF="javascript:self.close()" class="black3">FENSTER SCHLIESSEN</A></P></TD></TR></TABLE></BODY></HTML>');
win.focus;
}


