
function tabON(tabId){
	document.getElementById(tabId).style.backgroundColor="#fff";
	document.getElementById(tabId).style.color="#ff6600";
	}
function tabOFF(tabId){
	document.getElementById(tabId).style.backgroundColor="#ff6600";
	document.getElementById(tabId).style.color="#fff";
	}
function goToCnt(cntId){
	content.location.href=cntId+".html";
	}
	


