//mensaje
var message="Copyrigth By Arauco Video";
//IE
function clickIE4(){
	if (event.button==2){
		alert(message);
		return false;
	}
}
//NS
function clickNS4(e){
	if (document.layers||document.getElementById&&!document.all){
		if (e.which==2||e.which==3){
			alert(message);
			return false;
		}
	}
}
//alert
if (document.layers){
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=clickNS4;
}else if (document.all&&!document.getElementById){
	document.onmousedown=clickIE4;
}
//menu
document.oncontextmenu=new Function("alert(message);return false")

function agregar(){
   if ((navigator.appName=="Microsoft Internet Explorer") && 
         (parseInt(navigator.appVersion)>=4)) {
      var url="http://www.araucovideo.com/"; 
      var titulo="Arauco Video";
      window.external.AddFavorite(url,titulo);
   } else { 
      if(navigator.appName == "Netscape") 
         alert("Presione Crtl+D para agregar este sitio en sus Bookmarks"); 
   }
} 

function popupal() {
var hor
var ver
var ubix
var ubiy
ubix=500/2
ubiy=540/2
hor= screen.width/2-ubix;
ver= screen.height/2-ubiy;
	archivos = window.open("avisolegal.html", "ARAUCOVideo", "left="+hor+",top="+ver+",toolbar=0,location=0,directories=0,status=0,menubar=no,scrollbars=yes,resizable=no,width=500 height=540");
}

function popuplw() {
var hor
var ver
var ubix
var ubiy
ubix=500/2
ubiy=540/2
hor= screen.width/2-ubix;
ver= screen.height/2-ubiy;
	archivos = window.open("legalwarning.html", "ARAUCOVideo", "left="+hor+",top="+ver+",toolbar=0,location=0,directories=0,status=0,menubar=no,scrollbars=yes,resizable=no,width=500 height=540");
}