﻿//function for displaying selected Tab Highlighted.
function openDiv(mstr_category,mstr_zone, mstr_business, mstr_other, mstr_newsyear)
{
         if (mstr_category > 0)
        {
            if(document.getElementById("div_package"+mstr_category))
            {
                document.getElementById("div_package" + mstr_category).style.display = "inline";
                document.getElementById("ank"+ mstr_category).className="selected";
            }   
        }
        if(mstr_zone!='')
        {
            document.getElementById("ank"+ mstr_zone).className="selected";
        }
        if(mstr_business!='')
        {
            if(document.getElementById("ank"+ mstr_business))
            {
                document.getElementById("ank"+ mstr_business).className="selected";
            }
        }
        if(mstr_other!='')
        {   
            //if("ank"+ mstr_other== "ankState" || "ank"+ mstr_other=="ankGuest Review" || "ank"+ mstr_other=="ankNewsletter" || "ank"+ mstr_other=="ankCareer")
            //commented by Vandana Singh on date 7/12/2009 as top menu is changed as suggested by Amrita
            //if("ank"+ mstr_other=="ankGuest Review" || "ank"+ mstr_other=="ankNewsletter" || "ank"+ mstr_other=="ankCareer")
            if("ank"+ mstr_other=="ankPopular Cities" || "ank"+ mstr_other=="ankPopular Hotels" || "ank"+ mstr_other=="ankNewsletter" || "ank"+ mstr_other=="ankSend Enquiry")
            {
                document.getElementById("ank"+ mstr_other).className="selected";
            }    
        }
        if(mstr_newsyear!='')
        {   
            if(document.getElementById("ank"+ mstr_newsyear))
            {
                document.getElementById("ank"+ mstr_newsyear).className="selected";
            }    
        }
}