<!--
function toggleDiv(id,flagit) {
	if (flagit=="1"){
		document.getElementById('menuu'+id).style.cssText='background: url(http://www.netissime.com/images/ss-menu.gif) repeat-x top; color:#003366;';
		if (document.layers) document.layers[''+id+''].visibility = "show";
		else if (document.all) document.all[''+id+''].style.visibility = "visible";
		else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible";
	}

	else
	if (flagit=="0"){
		document.getElementById('menuu'+id).style.cssText='background: url(http://www.netissime.com/images/menu/bg.gif) repeat-x top; color:#fff;';
		if (document.layers) document.layers[''+id+''].visibility = "hide";
		else if (document.all) document.all[''+id+''].style.visibility = "hidden";
		else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden";
	}
}
//-->
<!--
function toggleDiv2(id,flagit) {
	if (flagit=="1"){
		document.getElementById('menuu'+id).style.cssText='background: url(http://www.netissime.com/images/ss-menu.gif) repeat-x top; color:#003366;';
		if (document.layers) document.layers[''+id+''].visibility = "show";
		else if (document.all) document.all[''+id+''].style.visibility = "visible";
		else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible";
	}

	else
	if (flagit=="0"){
		document.getElementById('menuu'+id).style.cssText='background: url(http://www.netissime.com/images/menu/bg.gif) repeat-x top; color:#fff;';
		if (document.layers) document.layers[''+id+''].visibility = "hide";
		else if (document.all) document.all[''+id+''].style.visibility = "hidden";
		else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden";
	}
}
//-->
