function seguirEnlace(url){
window.location.href='http://<?php echo$_SERVER["SERVER_NAME"]?>/'+url;
}

/*function siguienteImagen(){		
	//$('.visor .submenu ul li').removeClass('activo');
	$('#imagen_'+anterior).fadeOut(100);	
	$('#h4_'+anterior).fadeOut(100);
	
	if (anterior==2) 
		anterior=1;		
	else	
	anterior=2;
		
	setTimeout(function(){$('#imagen_'+anterior).fadeIn(400);	
	$('#h4_'+anterior).fadeIn(400);},100);
		
	$('.visor .imagenes h4').css({opacity: 0.7});
	//$('#enlace_imagen_'+anterior).addClass('activo');
	//tiempo=3000;
	}
*/
	
	function siguienteImagen(){		
	
	document.getElementById('imagen_'+anterior).style.display='none';
	
	if (anterior==2) 
		anterior=1;		
	else	
	anterior=2;

	document.getElementById('imagen_'+anterior).style.display='';
		
	
	}
	
	


var tiempo=3000;	
var anterior=1;


function onLoad(){
if(document.getElementById('visor')){
setInterval("siguienteImagen()",tiempo);
}
}

function ponClase(elemento,hayError){
if(hayError){
elemento.style.borderColor='red';
elemento.style.backgroundColor='#FFC';
}
	else{
	elemento.style.borderColor='';
	elemento.style.backgroundColor='white';
	}
	
}

function validaFormulario(){
var hasError=false;
var nombre=document.getElementById('nombre');
var telefono=document.getElementById('telefono');
var email=document.getElementById('email');
var comentarios=document.getElementById('comentarios');
//Nombre

if(nombre.value==''){
hasError=true;
ponClase(nombre,true);
}else{
ponClase(nombre,false);
}

if(telefono.value==''){
hasError=true;
ponClase(telefono,true);
}else{
ponClase(telefono,false);
}

if(email.value==''){
hasError=true;
ponClase(email,true);
}else{
ponClase(email,false);
}

if(comentarios.value==''){
hasError=true;
ponClase(comentarios,true);
}else{
ponClase(comentarios,false);
}

if(hasError==true)return;
document.getElementById('formulario').submit();
}
	


