function mostrarDetalle(id)
{
	
	if (document.getElementById("tabla_" + id)!= null){ // oculto la que estaba selecionada si no es la misma
		document.getElementById("tabla_" + id).style.display = '';	
		document.getElementById("botonmas_" + id).style.display = 'none';		
	}
}

function ocultarDetalle(id)
{
	
	if (document.getElementById("tabla_" + id)!= null){ // oculto la que estaba selecionada si no es la misma
		document.getElementById("tabla_" + id).style.display = 'none';	
		document.getElementById("botonmas_" + id).style.display = '';		
	}
}

function menuIlumina(seccion){
	if(seccion!=null){
		if (document.getElementById('menu_' + seccion)!=null){
			if(document.getElementById('menu_' + seccion).className!="td_menu_over"){
				document.getElementById('menu_' + seccion).className="td_menu_over";
				document.getElementById('menu_arr_' + seccion).className="td_menu_over";
			}
			else{
				document.getElementById('menu_' + seccion).className="td_menu";
				document.getElementById('menu_arr_' + seccion).className="td_menu";
			}
		}
	}
}

function menuIzq(seccion){
	if(seccion!=null){
		if (seccion==18)
			document.getElementById('servicios_izq').style.display="block";
		else
			document.getElementById('servicios_izq').style.display="none";
	}
}

function menuIlumina2(seccion1){
	if(seccion1!=null)
		if(seccion1!="")
			document.getElementById('marca_' + seccion1).src="/imagenes/cuadrado_opciones.jpg";
}

function menu_serv_over(seccion){
	document.getElementById(seccion).src="/imagenes/cuadrado_opciones.jpg";
}
function menu_serv_out(seccion){
	document.getElementById(seccion).src="/imagenes/spacer.gif";
}


function menu_serv_over1(seccion, seccion1){
	if (seccion!=seccion1)
		document.getElementById('marca_' + seccion).src="/imagenes/cuadrado_opciones.jpg";
}
function menu_serv_out1(seccion, seccion1){
	if (seccion!=seccion1)
		document.getElementById('marca_' + seccion).src="/imagenes/spacer.gif";
}

function ampliar(id,tipo){
	ventana=window.open('/index.php?action=mostrar_popup&tipo_producto='+tipo+'&id_producto='+id,'', 'toolbars=no, scrollbars=no, width=1, height=1');
}

function redimensionar(ancho, alto)
{
ventana.resizeTo(ancho+30,alto+50);
ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2); //centra la ventana. Eliminar si no se quiere centrar el popup
}

function incrementar(tipo, id)
{
	name = 'cant' + id;
	var val = document.getElementById(name).value;
	if (tipo == 1)
		val++;
	else
	{
		val--;
		if (val < 1)
			val = 1;
		}	
	document.getElementById(name).value = val;
}

function fieldNumber(objeto) 
{ 
	var evento_key = window.event.keyCode; 
	switch (evento_key) 
	{ 
		case 48: 
		case 49: 
		case 50: 
		case 51: 
		case 52: 
		case 53: 
		case 54: 
		case 55: 
		case 56: 
		case 57: 
		break; 
		default: 
		window.event.keyCode = 0; 
		return false; 
	} 
	return true; 
} 

