	function preview(path,w,h)
    {
	var pw=window.open("","previewWindow","toolbar=no,location=no,directoties=no,status=no,scrollbars=no,menubar=no,resizable=no,width="+w+",height="+h);
    pw.document.write("<body leftmargin='0' topmargin='0' rightmargin='0' bottommargin='0'>");
    pw.document.write("<img src='"+path+"' border='0' vspace='0' hspace='0' onClick='window.close()' title='закрыть' style='cursor: hand;'></body>");
    }
