// JavaScript Document
var message="Lo siento.\n\n\Botón inhabilitado";
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;



function recalcula(){
    var daH=0;
	daH = (document.body && document.body.clientHeight)?parent.interior.document.body.clientHeight: -5;
	daH = (document.addBinding)?daH+200:daH+500;
	alert(daH);
	document.getElementById("elIframe").style.height = daH + "px";
}

function cargar(url){
	parent.interior.location.href=url;
}
	
