/*
 * Limpiar cajas form busqueda y comentarios
 */
function limpia(me){
	if(document.getElementById(me).value=="Escribe aquí tu pregunta ...")
 		document.getElementById(me).value="";
}
/*
 * Apertura pop-up "aviso legal"
 */
var v=null; 
function abrirURL(url) { 
if (v) v.close(); 
v = window.open(url, 'newwindow', "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=480,height=580,left=20,top=20"); 
v.focus(); 
return false; 
}
function abrirPRENSA(url) { 
if (v) v.close(); 
v = window.open(url, 'newwindow', "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=700,height=580,left=20,top=20"); 
v.focus(); 
return false; 
}
