function OpenImageWindow(strText, strImage, strLanguage) {
	
	imageWindow = window.open('ImageWindow.html', 'NewWindow', 'width=601, height=497, toolbar=0, status=0, resizable=0, scrollbars=0');
	
	var html =	'<html>\n' +
				'	<head>\n' +
				'		<link rel="stylesheet" type="text/css" href="/Css/Common.css">\n' +
				'	</head>\n' +
				'	<body bgcolor="#333333">\n' +
				'		<table cellpadding=0 cellspacing=0 width="100%" height="100%">\n' +
				'			<tr>\n' +
				'				<td align=center valign=top>\n' +
				'					<h1>' + strText + '</h1>\n' +
				'				</td>\n' +
				'			</tr>\n' +
				'			<tr>\n' +
				'				<td align=center>\n' +
				'					<img src="' + strImage + '">\n' +
				'				</td>\n' +
				'			</tr>\n' +
				'			<tr>\n' +
				'				<td align=center valign=bottom>\n';
	
	if(strLanguage==1) {
		html += '					<button onclick="window.close()">Luk vindue</button>\n';		
	} // End if.
	if(strLanguage==2) {
		html += '					<button onclick="window.close()">Close Window</button>\n';		
	} // End if.
	if(strLanguage==3) {
		html += '					<button onclick="window.close()">Fenster schliessen</button>\n';
	} // End if.	
	
	html +=		'				</td>\n' +
				'			</tr>\n' +
				'		</table>\n' +
				'	</body>\n' +
				'</html>';
	
	imageWindow.document.write(html);
	
	//imageWindow.document.getElementById("text").innerHTML = "Hej!!!";
} // End function OpenImageWindow.