function OpenImage(image,width,height){	
	var sWidth = String("width=100%");
	var sHeight = String("height=100%");
	var sFeatures = String("width=" + width + ',' + "height=" + height );
	newWin = open('','',sFeatures);
	newWin.document.write('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	newWin.document.write('<img src=\"' + image + '\" width=\"' + width + '\" height=\"' + height + '\">');
	newWin.document.write('<div id="closeDiv" style="position:absolute; z-index:1; left: 12px; top: 12px"><form><font size="2"><input style="width:75px;background-color:#000000;font-size:10;font-weight:bold;font-family:Verdana, Arial, Helvetica, sans-serif; color:#FFFFFF" width="75" onClick="window.close()" type="button" name="Button" value="Close"></font></form></div>');
	newWin.document.write('</body>');
	newWin.document.close();
	newWin.focus();	
}
