function Op(path,pic_width,pic_height)
{
pic_width=620;
pic_height=400;
var NewWin=window.open("newwin.htm","vcx",'width='+pic_width+',height='+pic_height+',resizable=yes,toolbar=no,scrollbars=yes,status=yes');
NewWin.document.open();
NewWin.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">');
NewWin.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"><title>Галерея</title></head><body style="margin:0px;padding:0px">');
NewWin.document.write('<a href="javascript:self.close()"><img src=upload/'+path+' border=0></a>');
NewWin.document.write('</body></html>');
NewWin.document.close();
}
