// JavaScript Document
//Funcion para cambiar de estilos en el menu izquierda:
function cambiaEstilos(id,accion)
	{
		if (accion=="over")
		{
			document.getElementById("menu"+id).className="txtmenuover";
			document.getElementById("tabla"+id).className="encima";
			document.getElementById("enlace"+id).className="menuover";
		}
		else
		{
			document.getElementById("menu"+id).className="txtmenu";
			document.getElementById("tabla"+id).className="sinencima";
			document.getElementById("enlace"+id).className="menu";
		}
	}

//Funcion para proporcionar enlaces al menu izquierda:	
	function irPagina(url)
	{
		document.location.href=url;
	}
	

<!--
var nav4 = window.Event ? true : false;
function acceptNum(evt){	
// NOTE: Backspace = 8, Enter = 13, '0' = 48, '9' = 57	
var key = nav4 ? evt.which : evt.keyCode;	
return (key <= 13 || (key >= 48 && key <= 57));
}
//-->

function presupuesto(){
			
			return(
				   document.forms[2].procesador.value * document.forms[2].nprocesador.value +
				   document.forms[2].placa.value * document.forms[2].nplaca.value +
				   document.forms[2].ram.value * document.forms[2].nram.value +
				   document.forms[2].disco.value * document.forms[2].ndisco.value +
				   document.forms[2].caja.value * document.forms[2].ncaja.value +
				   document.forms[2].lector.value * document.forms[2].nlector.value +
				   document.forms[2].grabadora.value * document.forms[2].ngrabadora.value +
				   document.forms[2].tarjeta.value * document.forms[2].ntarjeta.value +
				   document.forms[2].monitor.value * document.forms[2].nmonitor.value + " €"
				   
				   )
		
			}
			
			