// JavaScript Document

function categorianoticias(valor){
	document.location.href='/index.php?op=noticias&cat='+valor;
}

function buscaranuncio(){
	sex=document.getElementById("sexo").value;
	ed=document.getElementById("edad").value;
	document.location.href='index.php?op=catalogo-anuncios&sex='+sex+'&ed='+ed;
}

function validarEmail(valor) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(valor))
		return (true)
	else
		return (false);
}
function validacontacto()
{
	nom=document.getElementById('nombre').value.replace(/^\s*|\s*$/g,"");
	cor=document.getElementById('email').value.replace(/^\s*|\s*$/g,"");
	com=document.getElementById('comentario').value.replace(/^\s*|\s*$/g,"");
	
	if(nom==""){
		alert("Debe introducir su nombre");
		return false;
	}
	if(cor=="" || !validarEmail(cor)){
		alert("Debe introducir su email");
		return false;
	}
	if(com=="" ){
		alert("Debe introducir un comentario");
		return false;
	}
	if(!document.getElementById("pol").checked){
		alert("Debe aceptar nuestra política de privacidad");
		return false;
	}
	return true;	
}

function buscarvideos(){
	sex=document.getElementById("sexo").value;
	document.location.href='index.php?op=catalogo-videos&sex='+sex;
}

function buscarinternacional(){
	sex=document.getElementById("sexo").value;
	ed=document.getElementById("edad").value;
	document.location.href='index.php?op=catalogo-internacional&sex='+sex+'&ed='+ed;
}

