﻿// JScript File
function CollapseAllPanes()
{
    var obj = $find("ctl00_contentLeftMenu_accordMenu");//._expandAllPanes(false);
    alert(obj);
}


function ExpandAllPanes()
{
    $find("accordMenu_AccordionExtender")._expandAllPanes(true);
}

function validate()
{
    alert("Mehmood");
}
function emptycart(msg)
{
    alert(msg);
    return false;
}

function ValidateSearch(src, arg)
{
    text = arg.Value;
    text = text.replace(/\s/g, "");
    text = text.replace(/\*/g, "");
    
    if (text.length < 3)
    {
        arg.IsValid = false;
    }
    else
    {
        arg.IsValid = true;
    }
}