function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function redireccionar(url) {
	location.href=url;
}

function mostrar_foto(id_foto){
	window.open("/foto_pop.php?id_foto=" + id_foto,"fotos","width=500,height=510,scrollbars=no");
}

function validar_busqueda_rapida(){
	if($F('busqueda_rapida') == ""){
		alert("El nombre no puede estar vacio.");
		return(false);
	}
	return(true);
}