function tabSenk(divId,sect){
	
var i=1;
for (i=1;i<=2;i++)
{
	document.getElementById("tabCont" + i).style.display = 'none';
	document.getElementById("tabLink" + i).style.backgroundColor='#0099cc';
}
	
	document.getElementById(divId).style.backgroundColor='#006699';
	document.getElementById(divId).style.color='#FFF';
	document.getElementById(sect).style.display = 'block';
		
}
	document.getElementById('tabLink1').style.backgroundColor='#006699';