/*var message='© Cárdenas Real Estate. All rights reserved';

function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")*/

function popupImg(img, l, t, w, h) {
var windowprops = "location=no,scrollbars=yes,menubar=yes,toolbar=yes,resizable=no" +
",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;

var URL = "" + img;
window.name = '_main';
popup = window.open(URL,"MenuPopup",windowprops);
}
