<!--
function lookImage(pic, wi, hei)
{
    var w="width="+wi;
    var h="height="+hei;
    opWin=open("","displayWindow", w+", "+h+", status=no, toolbar=no, menubar=no, resizable=no, scrollbars=no, top=100, left=120");
    opWin.document.open();
    opWin.document.write("<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">");
    opWin.document.write("<img src=\"i_big/"+pic+"\"" + w + " " + h + " border=\"0\">") 
    opWin.document.write("</body></html>");
    opWin.document.close();
}
//-->
