function img(img) {
	w=800;
	h=600;
    var date = new Date();
    var t = date.getTime();
    var left = (screen.width - w ) / 2;
    var top  = (screen.height - h ) / 2;
    imgWin = open("", "ImageWindow"+t, "width="+w+",height="+h+", left="+left+", top="+top+",  resizable=no, scrollbars=no, menubar=no, toolbar=no, status=yes");
    imgWin.document.open();
    imgWin.document.write("<html><head><title></title></head><body style=");
    imgWin.document.write("'text-align:center;margin:0px;padding:0px;height:100%;cursor:pointer'");
    imgWin.document.write(" onclick='window.close();'>");
    imgWin.document.write("<img src='"+ img +"' />");
    imgWin.document.write("</body></html>");
    imgWin.document.close();
    return false;
}

function upImg(img,w,h,text)
{
	var date=new Date();
	var t=date.getTime();
	var left=(screen.width-w)/2;
	var top=(screen.height-h)/2;
	imgWin=open("","ImageWindow"+t,"width="+w+",height="+h+",left="+left+",top="+top+",resizable=no,scrollbars=no,menubar=no,toolbar=no,status=yes");
	imgWin.document.open();
	imgWin.document.write("<html><head><title>"+text+"</title></head><body style='text-align:center;margin:0px;padding:0px;cursor:pointer'");
	imgWin.document.write(" onclick='window.close();'><img src='"+ img +"' width='"+w+"' height='"+h+"' alt='Кликните, чтобы закрыть окно'/></body></html>");
	imgWin.document.close();
	return false;
}
