// 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/5)-(breite/5);
oben = (screen.height/5)-(hoehe/5);
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 -->