var activeServicesTabID="Tab1";

function ActiveServicesTab(newActiveTabID)
{
if(newActiveTabID!=activeServicesTabID)
{
document.getElementById(newActiveTabID).className=newActiveTabID+"ON"; //active
document.getElementById(newActiveTabID+"Content").style.display="block";
document.getElementById(activeServicesTabID).className=activeServicesTabID+"OFF"; //inactive tab-top1-inactive
document.getElementById(activeServicesTabID+"Content").style.display="none";
activeServicesTabID=newActiveTabID;
}
}
