// Selección deshabilitada 1.0 ©2003 por Jonathan L. Rey para KINGSOFT
// Language="Javascript1.2"


function deshabilitarseleccion(e){
return false
}

function rehabilitar(){
return true
}

//Si es IE4+
document.onselectstart=new Function ("return false")

//Si es NS6
if (window.sidebar){
document.onmousedown=deshabilitarseleccion
document.onclick=rehabilitar
}
