function ViewImage(ImageURL, Width, Height)
{
	Windowoptions="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";

	ImageWindow=window.open("", "", Windowoptions + ',width=' + Width + ',height=' + Height);
	ImageWindow.focus();
	ImageWindow.document.open();
	with(ImageWindow)
	{
		document.write("<html><head>");
		document.write("<title>Shock: New Troubles (Image-Viewer)</title>");
		document.write("</head>");
		document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
		document.write("<img border=\"0\" onclick=\"window.close();\" src=\""+ ImageURL +"\" title=\"To close the window just click on it\">");
		document.write("</body></html>");
	}
}