var idioma="-eng";

var sw = 1;
function cambia1() {
	sw = 1;
}
function cambia0() {
	sw = 0;
}

function right() {
	document.getElementById("logotipo").onmousedown = function () {
		var msg2 = "To download the logo please go to the press room.";
		if (sw == 1) {
			if (navigator.appName == 'Netscape' && mousebutton.which==3) {
				if (confirm(msg2)) {
					window.parent.location.href='identidad_corporativa-eng.htm';
				} else return false;
			} else if (navigator.appName == 'Microsoft Internet Explorer' && event.button == 2) {
				if (confirm(msg2)) {
					window.parent.location.href='identidad_corporativa-eng.htm';
				} else return false;
			}
			return true;
		} else return false;
	}
}

