function popUp(image, title, width, height, scroll)
     {
     win = window.open('','win','width='+width+',height='+height+',scrollbars='+scroll+',resizable=1');
     win.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n" );
     win.document.write("<html>\n<head>\n<title>"+title+"</title>\n");
     win.document.write("<style type='text/css'>\n");
     win.document.write("body{margin: 0; padding: 0;}\n");
     win.document.write("</style>\n");
     win.document.write("<head>\n<body>\n");
     win.document.write("<img src=\"/"+image+"\" border=0 alt=\""+title+"\">\n");
     win.document.write("</body>\n<html>");
     win.document.close();
     }
