    function PopupPic(dir,sPicURL) {
    myWindow = window.open("","downloadImage",'resizable=1,scrollbars=0,height=400,width=300')
    
    myWindow.document.write( "<html><head><title>Download Image</title><link rel=\"stylesheet\" href=\"/css/web.css\" type=\"text/css\" media=\"screen\" /></head><body>");

    myWindow.document.write( "<div id='downloadPopup'><p><img src='/image-library/general/" + dir + "/thumbnails/" + sPicURL +"' class='downloadPopup' /><strong>File Name:</strong> "+sPicURL+"</p>");        

    myWindow.document.write("<hr/><p>To download this image, please select a desired resolution. And then, right click the link below and save to your desktop.</p>")

    myWindow.document.write( "<ul><li><a href='/image-library/general/" + dir + "/high-resolution/" + sPicURL +"'>High Resolution</a></li>" );
    myWindow.document.write( "<li><a href='/image-library/general/" + dir + "/images/" + sPicURL +"'>Low Resolution</a></li></ul>        <hr/><p>&copy; American Automobile Association</p></div></body></html>" );
    
    myWindow.document.close()
    }