function desplegar(id) {
var d = document.getElementById(id);
d.style.display='block';
}

function ocultar(id) {
var d = document.getElementById(id);
d.style.display='none';
}

function ver_video(video, titulo) {
direccion="ver_video.php?video="+video+"&titulo="+titulo;
window.open(direccion, "nada", "width=360,height=360");
return false
}

function ver_enviar() {
document.getElementById("enviar_noticia").style.display='block';
return false;
}

function validar() {
var b = document.getElementById("busqueda").value;
if (b == "") {
alert("Ingrese una palabra");
return false;
}
}

function abrir_pop_up(archivo) {
d = "/publicidad/?mostrar="+archivo;
window.open(d, "", "width=300,height=280,resizable=no,scroll=no");
return false; 
}