// JavaScript Document
var z = 1;

    
function llama(){
if(this.intervalo)return;
var pagina=this.id;
if (pagina=="inicio")
{
   window.location = "index.html";
}
else
{
   window.location = pagina+".html";
}
}

function cuadros(){
window.location = "cuadros.html";
}

function muebles(){
window.location = "muebles.html";
}

function decoracion(){
window.location = "decoracion.html";
}

function navidad(){
window.location = "navidad.html";
}

function cambiafotocuadros(arg){
var arg2 = String(arg);
if (arg2=="1") document.images.imgmia.src = document.images.uno.src;
if (arg2=="2") document.images.imgmia.src = document.images.dos.src;
if (arg2=="3") document.images.imgmia.src = document.images.tres.src;
if (arg2=="4") document.images.imgmia.src = document.images.cuatro.src;
if (arg2=="5") document.images.imgmia.src = document.images.cinco.src;
if (arg2=="6") document.images.imgmia.src = document.images.seis.src;
if (arg2=="7") document.images.imgmia.src = document.images.siete.src;
}

function cambiafotodeco(arg){
var arg2 = String(arg);
if (arg2=="1") document.images.imgmia.src = document.images.uno.src;
if (arg2=="2") document.images.imgmia.src = document.images.dos.src;
if (arg2=="3") document.images.imgmia.src = document.images.tres.src;
if (arg2=="4") document.images.imgmia.src = document.images.cuatro.src;
if (arg2=="5") document.images.imgmia.src = document.images.cinco.src;
if (arg2=="6") document.images.imgmia.src = document.images.seis.src;
if (arg2=="7") document.images.imgmia.src = document.images.siete.src;
}

function moverse(arg){
var x = Number(arg);
var y = 7*x-6;
   z = x;
   document.images.uno.src = "images/cuadros/"+String(y)+".jpg";
   document.images.dos.src = "images/cuadros/"+String(y+1)+".jpg";
   document.images.tres.src = "images/cuadros/"+String(y+2)+".jpg";
   document.images.cuatro.src = "images/cuadros/"+String(y+3)+".jpg";
   document.images.cinco.src = "images/cuadros/"+String(y+4)+".jpg";
   document.images.seis.src = "images/cuadros/"+String(y+5)+".jpg";
   document.images.siete.src = "images/cuadros/"+String(y+6)+".jpg";
}

function siguiente(){
var y = 0;

if (z<8) z=z+1; 
y = 7*z-6;
   document.images.uno.src = "images/cuadros/"+String(y)+".jpg";
   document.images.dos.src = "images/cuadros/"+String(y+1)+".jpg";
   document.images.tres.src = "images/cuadros/"+String(y+2)+".jpg";
   document.images.cuatro.src = "images/cuadros/"+String(y+3)+".jpg";
   document.images.cinco.src = "images/cuadros/"+String(y+4)+".jpg";
   document.images.seis.src = "images/cuadros/"+String(y+5)+".jpg";
   document.images.siete.src = "images/cuadros/"+String(y+6)+".jpg";
}

function anterior(){
var y = 0;

if (z>1) z=z-1; 
y = 7*z-6;
   document.images.uno.src = "images/cuadros/"+String(y)+".jpg";
   document.images.dos.src = "images/cuadros/"+String(y+1)+".jpg";
   document.images.tres.src = "images/cuadros/"+String(y+2)+".jpg";
   document.images.cuatro.src = "images/cuadros/"+String(y+3)+".jpg";
   document.images.cinco.src = "images/cuadros/"+String(y+4)+".jpg";
   document.images.seis.src = "images/cuadros/"+String(y+5)+".jpg";
   document.images.siete.src = "images/cuadros/"+String(y+6)+".jpg";
}

function validarEmail(){
	var hayAlgo = true;
	if(document.forms.envioMail.nombre.value==""){
		hayAlgo = false;
		alert("Debe Ingresar su Nombre para comunicarnos con Ud.");
		document.forms.envioMail.nombre.select();
		document.forms.envioMail.nombre.focus();
		return false;
	}
	if(document.forms.envioMail.telefono.value=="" && document.forms.envioMail.correo.value==""){
		hayAlgo = false;
		alert("Debe Ingresar al menos el correo o su número de teléfono para comunicarnos con Ud.");
		document.forms.envioMail.telefono.select();
		document.forms.envioMail.telefono.focus();
		return false;
	}
	if(hayAlgo){
		document.forms.envioMail.action = "enviook.php";
		document.forms.envioMail.submit();
		return true;
	}
}


