<script LANGUAGE="JavaScript">
<!--
function ShowScreenshot(theImage, width, height)
{
	var newWin;
	var maxbreite = screen.availWidth;
	var maxhoehe = screen.availHeight-30;
	var breite = parseInt(width) + 40;
	var hoehe = parseInt(height) + 40;
	var scrollbars = 0;
	if (breite > maxbreite)
	{
		breite = maxbreite;
		scrollbars = 1;
	}
	if (hoehe > maxhoehe)
	{
		hoehe = maxhoehe;
		scrollbars = 1;
	}
	props = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scrollbars+',resizable=1,width='+breite+',height='+hoehe+'';
	newWin = window.open("","Detailansicht",props);
	newWin.document.open();
	with (newWin.document)
	{
		write('<html><head><title>Detailansicht</title></he'+'ad>');
		write('<body bgcolor="white" font="black"><table border=0 width="100%" height="100%"><tr><td align="center" valign="center">');
		write('<a href="#" onclick="javascript:window.close()"><img src="' + theImage + '" border="0" alt="Zurück zum Workshop"></a>');
		write('</td></tr></table></body></html>');
	}
	newWin.document.close();
}

// -->
</script>
