<!--
	Browsertyp = parseInt(navigator.appVersion);
	Browser = false;
	if (Browsertyp >= 4)
		Browser = true;

	function openImgWindow(winName, imgSource, imgText, imgX, imgY) {
		
		var winX = imgX + 70;
		var winY = imgY + 110;
		
		var winParam = "directories=0,location=0,status=0,menubar=0,resizable=0,scrollbar=0,toolbar=0";
		winParam += ",width=" + winX + ",height=" + winY;
		
		if (newWin)
			newWin.close();
		
		var newWin = window.open('', winName, winParam);
			
		var docstring1 = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">';
		docstring1 += '<html><head><title>' + winName + '</title></head>';
		docstring1 += '<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">';
		
		var spacerstring = '<img vspace="0" hspace="0" src="../../assets/images/spacer.gif" height="10" width="1" border="0">';
		var imgstring = '<img vspace="0" hspace="0" src="../' + imgSource + '" height="' + imgY + '" width="' + imgX + '" border="0">';
		
		newWin.document.writeln(docstring1 + spacerstring);
		newWin.document.writeln('<div align="center">');
		newWin.document.writeln(imgstring);
		newWin.document.writeln('<div style="text-decoration:none; color:#050505; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 10px">' + imgText + '</div>');
		newWin.document.writeln('<a style="text-decoration:none; color:#333333; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 10px" href="JavaScript:parent.close()">schliessen</a>');
		newWin.document.writeln('</div>');
		newWin.document.writeln('</body></html>');

		// close stream and pop to front
		newWin.document.close();
		newWin.focus();
		
	}
	
//-->

