<!-- 

fncEstadoGeneral("www.villajos.net");

/********************************************************************
* Nombre: fncCargarOpcion()											*
* Autor: CREAVISION Digital											*
* Argumentos:	intSeccion (Entero) --> Nº de la seccion elegida 	*
* Descripción: Carga las distintas secciónes de la Web        		*
* Comentarios: 														*
*********************************************************************/
function fncCargarOpcion(intOpcion) {
	switch (intOpcion) {
		case 1: window.location = "empresa.html"; break;
		case 2: window.location = "quesos.html"; break;
		case 3: window.location = "aceites.html"; break;
		case 4: window.location = "contacto.html"; break;
	}
}

/********************************************************************
* Nombre: fncMenuQuesos()											*
* Autor: CREAVISION Digital											*
* Argumentos:	intSeccion (Entero) --> Nº de la seccion elegida 	*
* Descripción: Carga las distintas secciónes de la Web        		*
* Comentarios: 														*
*********************************************************************/
function fncMenuQuesos(intOpcion) {
	switch (intOpcion) {
		case 1: window.location = "semicurado.html"; break;
		case 2: window.location = "curado.html"; break;
		case 3: window.location = "reserva.html"; break;
		case 4: window.location = "tierno.html"; break;
		case 5: window.location = "oreado.html"; break;
		case 6: window.location = "enAceite.html"; break;
		case 7: window.location = "conservacion.html"; break;
	}
}


/********************************************************************
* Nombre: fncMenuAceites()											*
* Autor: CREAVISION Digital											*
* Argumentos:	intSeccion (Entero) --> Nº de la seccion elegida 	*
* Descripción: Carga las distintas secciónes de la Web        		*
* Comentarios: 														*
*********************************************************************/
function fncMenuAceites(intOpcion) {
	switch (intOpcion) {
		case 1: window.location = "villajos.html"; break;
		case 2: window.location = "hacienda.html"; break;
		case 3: window.location = "gourmet.html"; break;
		case 4: window.location = "salud.html"; break;
	}
}
/********************************************************************
* Nombre: fncAvisoLegal()											*
* Autor: CREAVISION Digital											*
* Descripción: Abre la ventana de aviso legal				   		*
*                                                         			*
* Comentarios: 														*
*********************************************************************/
function fncAvisoLegal() {
	fncAbrirVentana("avisoLegal.html",600,450,"vAvisoLegal");
}

/********************************************************************
* Nombre: fncBoton()												*
* Autor: CREAVISION Digital											*
* Parametros: strImagen (nombre de la imagen a cambiar				*
* 			  n (1:activa, 2: desactiva)							*
* Descripción: Activa la animacion del boton 				   		*
*                                                         			*
* Comentarios: 														*
*********************************************************************/
function fncBoton(strImagen,n) {
	if (n == 1) {
		document[strImagen].src = "imagenes/" + strImagen + "On.gif";
	}
	if (n == 2) {
		document[strImagen].src = "imagenes/" + strImagen + "Off.gif";
	}
//	alert(document[strImagen].src)
}
-->