//Function Oculta Tabla ID
isOPERA = (navigator.userAgent.indexOf('Opera') >= 0)? true : false;
isIE    = (document.all && !isOPERA)? true : false;
isDOM   = (document.getElementById && !isIE && !isOPERA)? true : false;

var cantidad	= new Array(); 
cantidad["representantes"] = "1";
cantidad["quienes"] = "3";
cantidad["linea"] = "8";
cantidad["showroom"] = "1";
cantidad["muestra_otromedio"] = "1";
var entrada	= new Array();
var content	= new Array ();

initArray("representantes");
initArray("quienes");
initArray("linea");
initArray("showroom");
initArray("muestra_otromedio");

function initArray(llave) {
	for (x=0; x < cantidad[llave]; x++){
		entrada [llave + "_"+x] = true;
	}
}
function show (llave, id, displayValue){
	if (isDOM)
		document.getElementById(llave+'_'+id).style.display = (displayValue)? displayValue: "";
	else if (isIE)
	document.all[llave+'_'+id].style.display = "";
}

function menu(llave, id){
	hide_all(llave);
	if (entrada[llave + "_"+id]){
		show (llave, id, 'table-row');
		for (x=0; x < cantidad[llave]; x++){
			entrada [llave + "_"+x] = true;
		}
		entrada[llave + "_"+id] = false;
	}else{
		entrada[llave + "_"+id]=true;
	} 
}
 
function hide (id){
	if (isDOM)
		document.getElementById(id).style.display = "none";
	else if (isIE)
		document.all[id].style.display = "none";
}
 
function hide_all(llave) {
	for (i=0; i<cantidad[llave];i++){
		hide(llave + "_" + i);
	}
}
 
//-->