// JavaScript Document
var message="Ibérica, Eventos & Espectáculos © 2006";
function noRightClick() {
if (event.button==2) {
alert(message)
}
}


function disabletext(e){
return false
}

function reEnable(){
return true
}

//if the browser is IE4+
document.onselectstart=new Function ("return false")
document.onmousedown=noRightClick

//if the browser is NS6
if (window.sidebar){
document.onmousedown=disabletext
document.onclick=reEnable
}
