function open_img(img, w ,h) {	
	
	w = w + 30;
	h = h + 60;
	
	var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
	
	var sHTML = window.open('', 'newWin', win);
		
		sHTML.document.write('<html><head><title>Image</title></head><body>');
		sHTML.document.write('<img src="images/'+img+'" align="center"><br>');
		sHTML.document.write('<div align="center"><a style="color:#000000" href="javascript:;" onClick="javascript:window.close();">закрыть</a></div>');
		sHTML.document.write('</body></html>');
		
	sHTML.document.close();	
	
}
