<SCRIPT LANGUAGE="JavaScript">
<!--
function ShowScreenshot(theImage){
var ScreenWin
ScreenText = "<html><head><title>Detailansicht</title></head><body bgcolor=\"white\" font=\"black\"><table width=100% height=100% border=0><tr><td width=100% height=100% align=center valign=middle><a href=\"#\" onClick=\"javascript:window.close();\"><img src=\""+theImage+"\" border=0 alt=\"Zurück\"></a></td></tr></table></body></html>"
ScreenWin = window.open("","Detailansicht","resizable=1,toolbar=0,scrollbars=1,height=200,width=300");
ScreenWin.document.open();
ScreenWin.document.writeln(ScreenText);
ScreenWin.document.close();
ScreenWin.focus();
}
// -->
</SCRIPT>
|