// JavaScript Document
var clickmessage="The photographs of the presented properties are owned by Alexandra Connolly. All of the information, text, data, photographs, images and all others which are published on the website are protected under the intellectual ownership rights. Due to this, no user can use any of these elements outside of private use. Any breech of these conditions, any reproduction, representation, use or adoption, under any form, full or partial of the website without the written authorization of Alexandra Lloyd Properties will be considered as an act of copying and will be sanctioned under the intellectual ownership act." 

function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
else if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
else if (document.getElementById){
if (e.which==3&&e.target.tagName=="IMG"){
alert(clickmessage)
return false
}
}
} 

function associateimages(){
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown=disableclick;
} 

if (document.all)
document.onmousedown=disableclick
else if (document.getElementById)
document.onmouseup=disableclick
else if (document.layers)
associateimages()

