
function ShowHideDiv(divid,chk)
{
var elmnt = document.getElementById(divid);
if(!chk)
    elmnt.className='hide';
else
    elmnt.className='show2';
}

function ShowTab(div,link,count,id,style)
{
    for(var i=1;i<=count;i++)
    {
        document.getElementById(div+i).className="hide";
        if(i!=count)
        {
        document.getElementById(link+i).className="Ritbrdr";
        }
    }
    document.getElementById(div+id).className="show";
    document.getElementById(link+id).className=style;
}