var PICPATH = "/content_files/";	// путь к картинкам (в конце обязательно слеш)


var img = new Image();

function imgpreview(imgSrc)
{
		var WMAX = screen.availWidth - 2, HMAX = screen.availHeight - 26;
// Resize image to fit into the rect (0,0,WMAX,HMAX)
		
		var x, y, w, h;
		x = Math.round((screen.availWidth - 400) / 2);
		y = Math.round((screen.availHeight - 400) / 2);
		w = 400;
		h = 400;

	var winParams = "left=" + x + ",top=" + y + ",width=" + w + ",height=" + h;
		win = window.open("", "", "toolbar=0,scrollbars=0,location=0,directories=0,status=0,menubar=0,resizable=0," + winParams);
                var zhtml = '<html><head><title>Просмотр</title></head>';
                zhtml+='<script>';
                zhtml+='function winClose() {';
                zhtml+='	if (event.keyCode == 27)';
                zhtml+='		window.close();';
                zhtml+='}';
                zhtml+='document.attachEvent("onkeypress", winClose);';
                zhtml+='</script>';
                zhtml+='<body leftmargin="0" rightmargin="0" marginwidth="0" topmargin="0" marginheight="0" scroll="no" onclick="window.close()">';
                zhtml+='<table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%">';
                zhtml+='<tr><td align="center" valign="middle"><img src="'+PICPATH+imgSrc+'" border="0"></td></tr>';
                zhtml+='</table></body></html>';
                win.document.write(zhtml);
                win.document.close();
		win.focus();

}
