
// Funcion Slide Imágenes
var slideCache = new Array();
function RunSlideShow(pictureName,imageFiles,displaySecs)
{
var imageSeparator = imageFiles.indexOf(";");
var nextImage = imageFiles.substring(0,imageSeparator);
if (document.all)
{
document.getElementById(pictureName).style.filter="blendTrans(duration=2)";
document.getElementById(pictureName).filters.blendTrans.Apply();
}
document.getElementById(pictureName).src = nextImage;
if (document.all)
{
document.getElementById(pictureName).filters.blendTrans.Play();
}
var futureImages= imageFiles.substring(imageSeparator+1,imageFiles.length)
+ ';' + nextImage;
setTimeout("RunSlideShow('"+pictureName+"','"+futureImages+"',"+displaySecs+")",
displaySecs*1000);
// Cache the next image to improve performance.
imageSeparator = futureImages.indexOf(";");
nextImage = futureImages.substring(0,imageSeparator);
if (slideCache[nextImage] == null) {
slideCache[nextImage] = new Image;
slideCache[nextImage].src = nextImage;
}
}
// Funcion POPUP Avisos
function popavisos() {
window.open("", "popavisos", 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=550,left =50,top = 50');
}
// Función PopUp Molduras
function popupmold() {
window.open("", "perfil", 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=500,left =150,top = 100');
}
// Función PopUp Catálogo
function popuppdf() {
window.open("", "pdf", 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=600,left = 200,top = 100');
}
// Función PopUp Fotos
function popupfotos(url) {
window.open(url, "perfil", 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=500,left =150,top = 100');
}
// Función Validar Form Contacto
function ValidarFormulario(){
	var errores="";
	if(FormularioContacto.Nombre==""){
		errores+="El campo Nombre es obligatorio.\n";
	}
	if(FormularioContacto.Email==""){
		errores+="El campo Email es obligatorio.\n";
	}
	if(FormularioContacto.Asunto==""){
		errores+="El campo Asunto es obligatorio.\n";
	}
	if (FormularioContacto.validar.checked==false) {
		 errores+="Debes aceptar los términos y condiciones.\n";
	}
	if(errores!=""){
		alert(errores);
		return false;
	}
}
// Comprueba terminos y condiciones en Formulario de registro
function validarregistro(){
if (document.formreg.validar.value==1) {
document.formreg.submit(); 
     }
	 else{
	 alert("Debes aceptar los términos y condiciones");
	  document.formreg.validar.focus();
       return false; 
	 }
}
// Comprueba terminos y condiciones en Confirmar pedido de zona
marcado=false; 
function compruebaforma(){ 
if(!marcado){ 
alert("Por favor, seleccione forma de pago"); 
return false; 
} 
else{ 
return validar();
  } 
 }
function validar(){
if (document.form1.validar.checked) {
document.form1.submit(); 
}
else{
alert("Debes aceptar los términos y condiciones");
document.form1.validar.focus();
return false; 
}
}
// Funcion Ocultar capa de carga
function hideDiv(id) 
{ 
document.getElementById(id).style.visibility = "hidden"; document.getElementById(id).style.display = "none"; 
}

// Funcion para ampliar la foto de la ficha
function grande(){
  var obj = document.getElementById('capagrande')
  if(obj.style.display == "block") obj.style.display = "none"
  else obj.style.display = "block"
}
function grandeoff(){
  	document.getElementById('capagrande').style.display = "none"
}