// JavaScript Document

function show(id)
{
	var el = document.getElementById(id);
	if (el)
		el.style.display = 'block';
}

function hide(id)
{
	var el = document.getElementById(id);
	if (el)
		el.style.display = 'none';
}

function showHide(id, valor)
{
	if (valor)
		show(id);
	else
		hide(id);
}

function showProduccion(valor)
{
	showHide('produccion_tipo', valor);
	showHide('produccion_tipo_01', valor);
	showHide('produccion_tipo_02', valor);
	showHide('produccion_stock', valor);
	showHide('produccion_demanda', valor);
}

function showSucursales(valor)
{
	showHide('sucursales_cuantas', valor);
}

function showContactotelef(valor)
{
	showHide('momento_contacto', valor);
	showHide('momento_fecha', valor);
	showHide('btn_enviar', valor);
}

function showProyecto(valor)
{
	showHide('descripcion_proyecto', valor);
}
function showActividaddelaEmpresa(el)
{
	var value = el.options[el.selectedIndex].id;
	var show = value.substring(3,4) == 'x';
	showHide('w_actividad', show);
}
