// JavaScript Document
// Deshabilitar boton derecho raton
<!-- Begin
document.oncontextmenu = function(){return false}
// End -->
// Deshabilitar seleccionar
<!-- Begin
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
// End -->
//Popup
<!--
function abre(url,name, breite, hoehe) {
links = (screen.width/0)-(breite/0);
oben = (screen.height/0)-(hoehe/0);
window.open(url,name,"height="+hoehe+",width="+breite+",status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = no,fullscreen = no,top ="+oben+",left ="+links);
}
// End -->