function imagePopup(url, descr){
if(typeof(url)!="object"){
window.golarge = window.open("","","top=10,left=10,width=30,height=30,scrollbars=no,resizable=yes");
window.golarge.document.open();
window.golarge.document.write('<html>');
window.golarge.document.write('<head>');
window.golarge.document.write('<title>PowerTrike GmbH</title>');
window.golarge.document.write('</head>');
window.golarge.document.write('<style>\n');
window.golarge.document.write('.link {font-family: Arial, Verdana; font-size: 11px; color: navy; TEXT-DECORATION: none;}');
window.golarge.document.write('.link:hover {color: navy; TEXT-DECORATION: underline;}');
window.golarge.document.write('.titel {text-align: center; font-family: Arial, Verdana; color: navy; font-size: 12px; font-weight: bold;}');
window.golarge.document.write('</style>\n');
window.golarge.document.write('<body topmargin="10" leftmargin="10" marginwidth="10" marginheight="10">\n');
window.golarge.document.write('<div class="titel">'+descr+'</div>\n');
window.golarge.document.write('<table height="100%" border="0"><tr><td align="center" valign="middle"><img border="1" src="'+url+'" alt="'+descr+'" onLoad="opener.imagePopup(this);" onclick="window.close()"><br><img src="/images/spacer.gif" width="1" height="5" border="0" alt="">')
window.golarge.document.write('<table cellspacing="0" cellpadding="0" border="0"><tr><td width="22"><a href="javascript:window.print();" class="link"><img src="/images/sm-print.gif" width="19" height="19" border="0" alt="Drucken ..."></a></td><td width="22"><a href="javascript:window.close();" class="link"><img src="/images/sm-close.gif" width="19" height="19" border="0" alt="Fenster schliessen"></a></td><td><a href="javascript:window.close();" class="link">Schliessen</a></td></tr></table></td></tr></table>\n');
window.golarge.document.write('</body>\n');
window.golarge.document.write('</html>\n');
window.golarge.document.close();
}
else{
if(document.layers)
window.golarge.resizeTo(url.width,url.height);
else
window.golarge.resizeTo(url.width+40,url.height+120);
}
}
