﻿function grdAccRpts_DblClickHandler(gridName, cellId) {

   
        var oRow = igtbl_getRowById(cellId)
        var CrashID = oRow.getCellFromKey("CrashID").getValue();
        var sURL = "frmAccidentRptFile.aspx?CrashID=" + CrashID;

        window.open(sURL, "Accident", "width=" + 1150 + ",height=" + 750 + ",status=1,resizable=1,top=27,left=140,scrollbars=1", false);

    }

    function InitPanel(oPanel) {




        var pi = oPanel.getProgressIndicator();

        pi.setLocation(ig_Location.MiddleCenter);
       // pi.setLocation(ig_Location.AboveBehind);
        //pi.setLocation(ig_Location.BottomCenter);
        //pi.setTemplate('<div class="leftline"></div>');
        //  pi.setTemplate('<div style="border: thin solid #66CCFF;background-color: #FFFFFF;">Please wait...</div>');

        // pi.setTemplate('<div style="background-image:url(../Images/please-wait.gif);width:100px;height:100px;"></div>');
        pi.setRelativeContainer(document.body);

        pi.setImageUrl('../Images/Loading_New.gif');
        //pi.setImageUrl('../Images/load.gif');

    }
