function showBig(product,windowClose,imgWidth){
    productpreview = window.open("","", "width="+imgWidth+", height=578 resizable=No");
    productpreview.document.write("<html><body leftmargin='0' topmargin='0'><img src="+product+".jpg alt='"+windowClose+"' onClick='self.close();' style='cursor:pointer;'></body></html>");
}

function showBig2(product,windowClose,imgWidth,imgHeight){
    productpreview = window.open("","", "width="+imgWidth+", height="+imgHeight+" resizable=No");
    productpreview.document.write("<html><body leftmargin='0' topmargin='0'><img src="+product+".jpg alt='"+windowClose+"' onClick='self.close();' style='cursor:pointer;'></body></html>");
}