function makeWin(imsrc, ww, wh) {
    ww=ww+25; wh=wh+50;
    w1=window.open('','w1','width='+ww+',height='+wh+',status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes');
    w1.document.open();
    w1.document.write("<html><head><title>Image Zoom<\/title><META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\"><META HTTP-EQUIV=\"Expires\" CONTENT=\"-1\"><\/head>");
    w1.document.write("<body bgcolor='#FFFFFF' text='#000000' leftmargin=2 topmargin=10><p align=center>");
    w1.document.write("<a href=javascript:close();><img border=0 title=\"Click to Close\" alt=\"Click to Close\" name=theimg src=" + imsrc + "></a><br>");
    w1.document.write("<a href=\"javascript:window.close();\"><font size=1 face=tahoma color=#000000>close window<\/font><\/a><\/body><\/html>");
    w1.document.focus();
};

function openSSLPopup() {
    w1 = window.open('','w1','width=400,height=250');
    w1.document.write("<font face=\"arial\"><b><font size=\"+2\">128 bit SSL Encryption</font></b><p>");
    w1.document.write("The Order Form pages for this store is served through a secure https connection using 128-bit SSL v2/v3 encryption.<p>We encrypt credit card information when a shopper enters the credit card number in the web browser, when it is sent to our server, and finally when it is sent from our server to our order processing center.");
    w1.document.write("<center><font size=1><br><a href=\"javascript:;\" onclick=\"window.close();\">close window</a></font></center></font>");
}
