var scWindow = null;

function showScreenshot(fileName,width,height) {
	closeScreenshot();
	scWindow = window.open("","SparSmsScreenshot","width="+width+",height="+height+",left=10,top=10");
	scWindow.document.open();
	scWindow.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
	scWindow.document.writeln('<html>');
	scWindow.document.writeln('<head>');
	scWindow.document.writeln('<meta http-equiv="content-type" content="text/html;charset=utf-8">');
	scWindow.document.writeln('<title>Screenshot</title>');
	scWindow.document.writeln('</head>');
	scWindow.document.writeln('<body style="margin: 0px 0px 0px 0px;">');
	scWindow.document.writeln('  <a href="javascript:self.close()"><img src="'+fileName+'" alt="Klicken Sie auf dieses Bild, um das Fenster zu schlie??en." width="'+width+'" height="'+height+'" border="0"></a>');
	scWindow.document.writeln('</body>');
	scWindow.document.writeln('</html>');
	scWindow.document.close();
	return false;
}

function closeScreenshot() {
	if ( (scWindow != null) && (scWindow.closed == false) ) {
		scWindow.close();
		scWindow = null;
	}
}

