﻿// JScript File
function SelectCheckAllCheckboxes()
{
     if(!isSelectCheckBox("chkDelete"))
    {
        alert("Please select atleast one check box");
        return false;
    }
    return(confirm('Do You Want to Proceed?'));
 }
 
function SelectCheck()
{
     if(!isSelectCheckBox("chkSelect"))
    {
        alert("Please select at least one record");
        return false;
    }
    return(confirm('Do you want to continue ?'));
 }
 function SelectCheckPhoto()
{
     if(!isSelectCheckBox("chkPhoto"))
    {
        alert("Please select at least one record");
        return false;
    }
    return(confirm('Do you want to continue ?'));
 }

var GridBackGroundColor="#FFFFFF";
function GridOnMouseOver(rowObj)
{
   GridBackGroundColor=rowObj.style.backgroundColor;
   rowObj.style.backgroundColor="e8f4f4"; //'beige';
}
function GridOnMouseOut(rowObj)
{
    rowObj.style.backgroundColor=GridBackGroundColor;
}

function LeftMenuOnMouseOver(rowObj)
{
    rowObj.style.backgroundColor="3366AA"; //'beige';3366AA
}
function LeftMenuOnMouseOut(rowObj)
{
    rowObj.style.backgroundColor="5588DD";
}