/* Code by: Jake Bradley	02/01 */
/* Tools for Loading Images */

/* Popup Image and display caption */
function ImagePopupWin(Image1, Caption1, WIDTH, HEIGHT) {
W = WIDTH;
H = HEIGHT;
windowprops = "left=5,top=5,width=" + W + ",height=" + H;
PageData1 = "<html>";
PageData1 += "<head>";
PageData1 += "<meta http-equiv='Content-Language' content='en-us'>";
PageData1 += "<meta http-equiv='Content-Type' content='text/html; charset=windows-1252'>";
PageData1 += "<meta name='GENERATOR' content='Microsoft FrontPage 4.0'>";
PageData1 += "<meta name='ProgId' content='FrontPage.Editor.Document'>";
PageData1 += "<title>2001 Leon Lions Baseballl</title>";
PageData1 += "</head>";
PageData1 += "<body>";
PageData1 += "<p align='center'><img border='0' src='" + Image1 + ".jpg'></p>";
PageData1 += "<p align='center'>" + Caption1 + "</p>";
PageData1 += "<p align='center'><a href='javascript:window.close();'>Close Window</a></p>";
PageData1 += "</body>";
PageData1 += "</html>";
preview1 = window.open("", "preview1", windowprops);
preview1.document.open();
preview1.document.write(PageData1);
preview1.document.close();
}




