newWin=null;
function showPic(fpath,w,h){
if(newWin!=null){newWin.close(); newWin=null;}
newWin=window.open('','newWin','height=' + h + ' width= ' + w +'');
newWin.document.write("<html><head><title>Jaycee Jewellers</title></head><body bgcolor='#ffffff' topmargin=0 leftmargin=0>");
newWin.document.write("<center><img src='" + fpath + "' height='" + h + "'  /></center><body></html>");
}

