// JavaScript Document
//amplia reducir mapas
 function ampliar(i,capa,boton){
var alt=366;

	document.getElementById(capa).style.height =  alt + 'px';	
	
	document.getElementById(boton).innerHTML = '<img src="imagenes/up.gif" alt="Reducir mapa" border="0" align="absmiddle" />Reducir mapa';
	document.getElementById(boton).onclick = function () {
  			reducir(166,capa,boton);	
	}
	 
 }
 
  function reducir(i,capa,boton) {
document.getElementById(capa).style.height =  i + 'px';	
  			document.getElementById(boton).innerHTML = '<img src="imagenes/down.gif" alt="Ampliar mapa" border="0" align="absmiddle" />  Ampliar mapa';
document.getElementById(boton).onclick = function () {
  			ampliar(366,capa,boton);	
  	}	
  }
  
//slide de premios
  	$(document).ready(function(){	
		$("#slider").easySlider();
	});	
	
//comparamos claves en formulario
function Comparar() {
var clave=document.sampleform.clave.value;
var reclave=document.sampleform.reclave.value;
if(clave==reclave){


} else{
window.alert('CLAVE: Desbes confirmar la clave.');
document.sampleform.clave.value='';
document.sampleform.reclave.value='';
}
}


//comprobamos extension de imagen
function Validar() {
var punto=document.sampleform.imagen.value.indexOf('.',0);
if((document.sampleform.imagen.value.substr(punto + 1, 3)=='jpg') || (document.sampleform.imagen.value.substr(punto + 1, 3)=='JPG')){
} else{
window.alert('IMAGEN DE GRUPO: El archivo no es JPG, la imagen debe estar en formato JPG o la inscripción no se procesará correctamente.');
document.sampleform.imagen.value='';
}
}

//funcion para pop up
function Abrir_ventana (pagina) {
var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=670, height=365, top=85, left=140";
window.open(pagina,"",opciones);
}


//funcionjquery para caja lomas
function loMas(ver){
$(document).ready(function(){
      $("#cajaMisNot").load("includes/lo-mas.php", {ver:ver}, function(){
      });

})
}
	
	
