/* BCPL Storyville JavaScripts */
/* copyright 2008, Baltimore County Public Library */

function enlargePhoto(photoSelection,photoBy,windowName) {
   formWindow = window.open ("", windowName, 'toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=1,width=640,height=520,top=60,left=40');
   formWindow.document.write("\<html\>\n");
   formWindow.document.write("\<head\>\n");
   formWindow.document.write("\<meta name=\"AUTHOR\" content=\"Baltimore County Public Library, http://www.bcpl.info/\"\>\n");
   formWindow.document.write("\<meta name=\"DESCRIPTION\" content=\"A photograph taken at Storyville @ Rosedale Library, provided by the Baltimore County Public Library.\"\>\n");
   formWindow.document.write("\<meta name=\"COPYRIGHT\" content=\"Baltimore County Public Library\"\>\n");
   formWindow.document.write("\<title\>Click on the Photo to Close Window\</title\>\n");
   formWindow.document.write("\</head\>\n");
   formWindow.document.write("\<body bgcolor=\"\#ffffff\" topmargin=\"0\" leftmargin=\"0\"\>\n");
   formWindow.document.write("\<p align=\"center\"\>\<a href=\"\#\" onClick=\"javascript:window.self.close()\"\>\<img ");
   formWindow.document.write("border=\"0\" width=\"640\" height=\"480\" alt=\"Click on the Photo to Close Window\" ");
   formWindow.document.write("src=\"");
   formWindow.document.write(photoSelection);
   formWindow.document.write("\"\>\</a\>\<br\>\n");
   formWindow.document.write("\<font face=\"Comic Sans MS, cursive\" size=\"2\"\>Photo by ");
   formWindow.document.write(photoBy);
   formWindow.document.write("\</font\>\</p\>\n");
   formWindow.document.write("\</body\>\n");
   formWindow.document.write("\</html\>");
}