function showPic(cPicture,orgWidth,orgHeight,msg) {
	
	orgWidth = parseInt(orgWidth);
	orgHeight = parseInt(orgHeight);

	var nHeight = orgHeight + 300;
	var nWidth = orgWidth + 300;
	var tableWidth = orgWidth + 200;
	
	
	var newWindow = window.open("","HirRes", "HEIGHT="+nHeight+", WIDTH="+nWidth+", dependent=no,scrollbars=no,resizable=no,screenX=0,screenY=0");
	
	newWindow.moveTo(100, 100);
	
	with (newWindow.document) {
		write ('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title></title></head><body style="background-color: #750000; padding: 20px 60px 40px 40px;"><table id="content" cellpadding="0" cellspacing="0" border="0" width="'+tableWidth+'" style="table-layout: fixed; background: url(/wsimages/background/background.gif); background-repeat: no-repeat; background-position: right top; background-color: #FBFBFB; font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 12px; line-height: 17px; word-spacing: 2px; letter-spacing: 1px;">\n');
		write ('<tr><td valign="middle" width="140" style="width: 140px;"><img src="/wsimages/logo.gif" align="left" vspace="0" hspace="10" /></td><td valign="middle" align="left" style="height: 105px; color: #C7C7C7; ">FREMDENVERKEHRSAMT DER<br />VOLKSREPUBLIK CHINA</td></tr>');
		write ('<tr><td colspan="2"><img align="center" src="/images/' + cPicture + '" vspace="10" hspace="100" border="0" width="'+orgWidth+'" height="'+orgHeight+'"></td></tr>');
		write ('<tr><td>&nbsp;</td><td style="font-weight: bold; font-size: 10px; word-spacing: 1px; letter-spacing: 1px; padding-top: 10px; padding-bottom: 60px; width: 220px;"><p>'+msg+'</p></td></tr>');
		write ('<tr><td>&nbsp;</td><td style="font-size: 10px; padding: 10 100 10 0; color: #C7C7C7;" align="right">[ <a style="font-size: 10px; color: #C7C7C7;" href="javascript:self.close()">Fenster schlie&szlig;en</a> ]</td></tr></table></body></html>');
		close();
	}
}