// Java Document

function popup(url,lngw,lngh){
	lngw = lngw + 20;
	lngh = lngh + 40;
	lngleft = lngw/2-20;
fenster = window.open("", "Pop", "scrollbars=no,resizable=no,width=" + lngw + ",height=" + lngh);
fenster.document.write ("<html><head><title>Aquaristik Weinzierl</title>");
fenster.document.write ("<style type='text/css'>");
fenster.document.write ("<!--");
fenster.document.write ("a {font-family: Verdana, Arial, Helvetica, sans-serif; color:#000;}");
fenster.document.write (".boril {background-image: url(mainpic/cor_i_l.gif); background-repeat:repeat-y; background-position:left;}");
fenster.document.write (".borir {background-image: url(mainpic/cor_i_r.gif); background-repeat:repeat-y; background-position:right;}");
fenster.document.write ("-->");
fenster.document.write ("</style>");
fenster.document.write ("</head>");
fenster.document.write ("<body>");
fenster.document.write ("<table width='100%' align='center' border='0' cellspacing='0' cellpadding='0'>");
fenster.document.write ("<tr>");
fenster.document.write ("<td width='8' valign='bottom'><img src='mainpic/cor_i_lt2.gif' alt='' width='8' height='8'></td>");
fenster.document.write ("<td valign='bottom'><img src='mainpic/cor_i_t.gif' alt='' width='100%' height='8'></td>");
fenster.document.write ("<td width='8' valign='bottom'><img src='mainpic/cor_i_rt2.gif' alt='' width='8' height='8'></td>");
fenster.document.write ("</tr>");
fenster.document.write ("<tr>");
fenster.document.write ("<td class='boril'>&nbsp;</td>");
fenster.document.write ("<td>");
fenster.document.write ("<div align='center'><img src='");
fenster.document.write (url);
fenster.document.write ("'>");
fenster.document.write ("</div></td>");
fenster.document.write ("<td class='borir'>&nbsp;</td>");
fenster.document.write ("</tr>");
fenster.document.write ("<tr>");
fenster.document.write ("<td valign='top'><img src='mainpic/cor_i_lb2.gif' alt='' width='8' height='8'></td>");
fenster.document.write ("<td valign='top'><img src='mainpic/cor_i_b.gif' alt='' width='100%' height='8'></td>");
fenster.document.write ("<td valign='top'><img src='mainpic/cor_i_rb2.gif' alt='' width='8' height='8'></td>");
fenster.document.write ("</tr>");
fenster.document.write ("</table>");
fenster.document.write ("<div align='center'><a href='javascript:self.close()'>Schliessen</a></div>");
fenster.document.write ("</body></html>");
fenster.document.close();
fenster.focus();
return false;
}
