﻿// JScript File

function popFullImage(ImgName,ImgWidth,ImgHeight, caption)
{
   var winWidth = parseInt(ImgWidth) + parseInt(30)
   var winHeight = parseInt(ImgHeight) + parseInt(150)
   var popWindow = window.open("","Package","width=" + winWidth + ",height=" + winHeight + ",toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1");
   
   popWindow.document.writeln("<html><head><title>Enlarge Image</title></head>");
   popWindow.document.writeln("<body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>");
   popWindow.document.writeln("<center><table border=0 cellpadding=0 cellspacing=0>");
   popWindow.document.writeln("<tr><td colspan=\"2\" class=\"BODY_FONT\"><b><u><img style=\"border:solid 5px #ffffff;\" src=\"" + ImgName + "\" width=\"" + ImgWidth + "\" height=\"" + ImgHeight + "\" border=\"0\"></u></b></td></tr>");
      popWindow.document.writeln("<tr><td colspan=\"2\" align=\"center\"><br>" + caption + "</td></tr>");
   popWindow.document.writeln("<tr><td colspan=\"2\" align=\"center\"><br><input type=\"button\" name=\"Task\" value=\"Close\" onClick=\"window.close()\"></td></tr>");
   popWindow.document.writeln("</table></center>");
   popWindow.document.writeln("</body></html>");
}

function popUp(PageName,winWidth,winHeight)
{
   window.open(PageName,"Package","width=" + winWidth + ",height=" + winHeight + ",toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1");
}

    function KeyDownHandler()
    {
        // process only the Enter key
        if (event.keyCode == 13)
        {
            // cancel the default submit
            event.returnValue    =    false;
            event.cancel        =    true;
            var obj = document.getElementById('<%=ibGoButton.ClientID%>');
            obj.click();

        }

    }
