﻿function viewImage(image,width,height,alt)
{
    var openWindow;
    var windowWidth = width + 50;
    var windowHeight = height + 75;
    var imageWidth = width;
    var imageHeight = height;

    openWindow = window.open("", "", "resizable=yes,scrollbars=yes,toolbar=no,directories=no,status=no,menubar=no,width=" + windowWidth + ",height=" + windowHeight + ",top=0,left=0");
    openWindow.document.write("<html>");
    openWindow.document.write("<head>");
    openWindow.document.write("<title>Tooele Arts Festival</title>");
    openWindow.document.write("</head>");
    openWindow.document.write("<body topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'>");
    openWindow.document.write("<br />");
    openWindow.document.write("<div style='text-align:center;text-decoration: none;'>");
    openWindow.document.write("<a href='javascript:self.close();'>Close Image</a>");    
    openWindow.document.write("<br />");
    openWindow.document.write("<img src='" + image + "' width='" + imageWidth + "' height='" + imageHeight + "' border='0' alt='" + alt + "' />");
    openWindow.document.write("<br/>");
    openWindow.document.write("</div>");
    openWindow.document.write("</body>");
    openWindow.document.write("</html>");
    openWindow.focus();
}