﻿//INDEX_TAB_NEWS --------------------------------------------------------

var currentC;
currentC = "news01";

function tabmeuC(id,name,MENU3) { 
	document.all.item(id).src = "images/" + name + "r.gif";
	if(currentC != id)
		document.all.item(currentC).src = "images/" + currentC + ".gif";
	currentC = id;
	banana(MENU3); }



function banana(MENU3) {	

	if (MENU3 == 1) {
		document.all.NEWS_head.style.display = "block";
		document.all.NEWS_inter.style.display = "none"; }
		
	else if (MENU3 == 2) {
		document.all.NEWS_head.style.display = "none";
		document.all.NEWS_inter.style.display = "block"; }
	
}



//TRUTH / CONTENT SHOW --------------------------------------------------------
function truth(num, p_totcount) { 	  	
for (f=1; f<=p_totcount; f++) { 
	var menu = eval("document.all.truth0"+f+".style"); 
	if (num == f ) {
		if (menu.display == "block") {
			menu.display = "none"; 
		} else {
			menu.display = "block"; }
		}else { 
		menu.display = "none"; } 
	} 
}