// Desactiva la selección de texto en el body.
//document.onselectstart = new Function ("return false");
document.ondragstart = new Function ("return false;");
document.oncontextmenu = new Function ("return false;");
// Highlight de los temas.
function mon(x) { x.style.filter = "invert(enabled=1)"; x.style.cursor = "hand"; }
function mout(x) { x.style.filter = "invert(enabled=0)"; }
function mclick(x) { document.location.href = x; }
// Highlight de los links.
function lmon(x) { x.style.backgroundColor = "#3E3E3E"; x.style.border = "1px solid #666666"; x.style.cursor = "hand"; }
function lmout(x) { x.style.backgroundColor = "#000000"; x.style.border = "1px solid #000000"; }
function lmclick(x) { document.location.href = x; }
// Salto en ventana nueva.
function gotoUrl(url) { if (url != '') open(url,'myWindow'); }
// Captura el Enter de la búsqueda.
function submitenter(e) { var keycode; if (window.event) keycode = window.event.keyCode; if (keycode == 13) Search(); }
function Search() { if (F.Search_Text.value!="") { F.action = "search.asp"; F.target = "temas"; F.submit(); } }