
function showImage(imgFile, iWidth, iHeight){
	iHeight += 30;
	var win = window.open('about:blank', 'bigImage', 'top=0,left=0,width='+iWidth+',height='+iHeight);
	iHeight -= 30;
	
	win.document.open();
	win.document.writeln('<html>');
	win.document.writeln('<head');
	win.document.writeln('<title></title>');
	win.document.writeln('<link rel= "stylesheet" type= "text/css" href= "style.css">');
	win.document.writeln('</head>');
	win.document.writeln('<body topmargin= "0" leftmargin= "0" marginwidth= "0" marginheight= "0" bgcolor= "#3A3C69" onLoad= "JavaScript: window.focus();">');
	win.document.writeln('<a href= "JavaScript: window.close();"><img src= "'+imgFile+'" border= "0" width= "'+iWidth+'" height= "'+iHeight+'" alt= "Fenster schließen"></a>');
	win.document.writeln('<center><a href= "JavaScript: window.close();">Fenster schließen</a></center>');
	win.document.writeln('</body>');
	win.document.writeln('</html>');
	win.document.close();
}

function showFile(fileName, wName, iWidth, iHeight){
	var win = window.open(fileName, wName, 'resizable=no,scrollbars=yes,top=0,left=0,width='+iWidth+',height='+iHeight);
}
