function sendAfriend(){
  var strBody = "I wanted to let you know about this great store full of hypoallergenic, nickel-free jewelry you are sure to love, "+window.location;
  var strSubject = "SimplyWhispers's has aa Allergy Free Jewelry Selection ...";
  window.location = "mailto:?subject="+strSubject+"&body="+strBody;
}

function viewimg(n, img, w, h){
  foto1= new Image();
  foto1.src=(img);
  viewFotos(n, img, w, h);
}

function viewFotos(name, img, w, h){

 features = 
    "toolbar=no,location=no,directories=no,status=no,menubar=no," +
    "scrollbars=yes,resizable=yes,width=" + w + ",height=" + h;
 dlg = window.open ("","Details",features);
 dlg.document.write("<html><head><title>" + name + " Zoom</title></head>");
 dlg.document.write("<body bgcolor=white><center>"); 
 dlg.document.write("<a href=# onClick=window.close();>");
 dlg.document.write("<table width=100% height=100%>");
 dlg.document.write("<tr><td align=center valign=middle>");
 
 dlg.document.write("<img src=" + img + ">");
 dlg.document.write("</td></tr>");
 dlg.document.write("<tr><td align=center valign=middle>");
 dlg.document.write("<a href=# onClick=window.close();>");
 dlg.document.write("<font size=1 face=verdana>click to close</font></a>");
 dlg.document.write("</td></tr>");
 dlg.document.write("</table></body></html>");
}

