// JavaScript Document
function displayPict(pict, head,h_image)
{
    if(h_image == 1){var productWindow = open("", "product_window","resizable=no, scrollbars=no, titlebar=no, location=no, menubar=no, toolbar=no, width=492, height=652");}
        else {var productWindow = open("", "product_window","resizable=no, scrollbars=no, titlebar=no, location=no, menubar=no, toolbar=no, width=652, height=492");} 
    productWindow.document.writeln('<html><head><TITLE>' + head + '</TITLE>');
    productWindow.document.writeln("<style>html, body { margin: 0; padding: 0; } .box { border: 1px solid #f6c101; background: #fcf0aa; padding: 5px; }</style></head><body>");
    productWindow.document.writeln('<div class="box"><img src="' + pict + '" /></div>');
    productWindow.document.writeln('</body></html>');
    productWindow.document.close();
    productWindow.focus();
    productWindow.scroll(0,0);
}

