var currentTabId = 0;
function TabTabs(tabId) {
    currentTabId = tabId;

    for (i = 0; i < tabCount; i++)
    {
		
        if (i == currentTabId)
        {

            
			document.getElementById("tabCell"+i).style.backgroundColor='#dbf0d4';
			document.getElementById("tabCell"+i).style.color='#000000';
			document.getElementById("tabCell"+i).style.cursor='pointer';
			document.getElementById("tabData" + i).style.display = "";
			
			
        }
        else
        {
            document.getElementById("tabCell"+i).style.backgroundColor='';
			document.getElementById("tabCell"+i).style.color='#ffffff';
			document.getElementById("tabCell"+i).style.cursor='pointer';
			document.getElementById("tabData" + i).style.display = "none";
			
        }
    }
    
    
    
}


function call3(id){

document.getElementById("tabCell"+id).style.backgroundColor='#dbf0d4';
document.getElementById("tabCell"+id).style.color='#000000';
document.getElementById("tabCell"+id).style.cursor='pointer';
}
function call4(id){
if(currentTabId!=id){
document.getElementById("tabCell"+id).style.backgroundColor='';
document.getElementById("tabCell"+id).style.color='#ffffff';
document.getElementById("tabCell"+id).style.cursor='pointer';
}
}



