function newwin(img, fol, sku){

features = 
    "toolbar=no,location=no,directories=no,status=no,menubar=no," +
    "scrollbars=yes,resizable=yes,width=500,height=500,left=0,top=0";
 pop = window.open ("","Details",features);
 pop.document.write("<html><head><title>" + "Shalincraft-India" + " Zoom</title></head>");
 pop.document.write("<body bgcolor=white><center>");
 pop.document.write("<table width=100% height=100%>");
 pop.document.write("<tr><td align=center valign=middle>");
 pop.document.write("<font size=1 font color=#9F0000 face=verdana>(Click image to close window)</font></a><br><br>");
 pop.document.write("<a href=# onClick=window.close();>");
 pop.document.write("<img src=" + img+fol+"/"+sku +" border=\"0\">");
 pop.document.write("</td></tr>");
 pop.document.write("<tr><td align=center valign=middle>");
 pop.document.write("<a href=# onClick=window.close();>");
 pop.document.write("<font size=1 font color=#9F0000 face=verdana>(Close Window)</font></a>");
 pop.document.write("</td></tr>");
 pop.document.write("</table></body></html>");
 pop.document.close();
}