function showPicture(url, width, height,  title)
{
    options = "menubar=0, resizable=0, statusbar=0, toolbar=0, scrollbars=0, location=0";
    options = options + ', width=' + width + ', height=' + height ;
    win = window.open("", "", options);
    win.focus();
    win.document.open();
    with(win)
    {
        document.write("<html><head>");
        document.write("<title>"+title+"</title>");
        document.write("<style>");
        document.write("   <!--");
        document.write("   body {background-color: #e9967a;}");
        document.write("   //-->");
        document.write("</style>");
        document.write("</head>");
        document.write("<body>");
        document.write('<img style="margin-left:10px; margin-right:10px; margin-top:10px;" src="'+url+'" title="' + title + '">');
        document.write("</body></html>");
    }
    return;
}

