<!--

function WinOpen(pict, des, w, h)
{
 myWin=open("","displaywindow","width="+w+",height="+h+",status=0,menubar=0,location=0,directories=0,scrollbars=1,resiazble=1");
 myWin.document.open();
 myWin.document.write("<html><head><title>Просмотр</title></head><body bgcolor=#F8EEE9><div style='font-size: 10px; font-family: Verdana; text-align: center'><img src="+pict+"><hr style='height: 1px'>"+des+"</div></body></html>");
 myWin.document.close();

}
function new_window(url) 
{   
link=window.open(url, "Link", "toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=1, resizable=0, width=630, height=600, left=50, top=50");
}

//-->


