function Enlarge(imgpath,desc,w,h,winName) {
        var frameSpec="<html>"+
                                  "<body bgcolor='#000000' text='#C2C2C2' link='#C2C2C2' vlink='#C2C2C2' alink='#C2C2C2' marginheight='0' marginwidth='0'>"+
                                  "<head>"+
                                  "<title>"+
                                  desc+
                                  "</title>"+
                                  "</head>"+
                                  "<img src='"+
                                  imgpath+
                                  "'>"+
                                  "</body>"+
                                  "</html>";
        var features="width="+w+","+"height="+h+","+"resizable=no,titlebar=no,scrollbars=yes";
        var sPic1=window.open("",winName,features);
        sPic1.window.moveTo(0, 15);
        sPic1.document.open();
        sPic1.document.write(frameSpec);
        sPic1.document.close();
        return false;
}

   
