var copyright_msg = "Todo el material gráfico y las fotografías son propiedad intelectual de ZinCo. Si le interesa descargarlo, por favor pongase en contacto con nosotros.";

if (document.layers){ 
	window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP) 
	window.onmousedown=rightclick; 
	window.onmouseup=rightclick; 

	function rightclick(e) { 
		if (e.which == 3) { 
			// Put right mouse code here 
			alert(copyright_msg); 
			return false; 
		} else { 
			return true; 
		}
	}
}

if (document.all) { 
	function click() { 
		if (event.button==2) { 
			alert(copyright_msg); 
		}

		if (event.button==3) { 
			alert(copyright_msg);
		} 
	}
	document.onmousedown=click 
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


