
function selectTab(url){

	self.location.href=url;

}

function highlightTab(cell,highlight){

	if(highlight&&cell.className.match(/tab-off/)){
		
		cell.style.textDecoration="underline";
		
	}
	else{
	
		cell.style.textDecoration="none";
	
	}				
}
