// JavaScript Document

var message="This Function is Disabled. Please feel free to contact us:        \n\nAdam Smith Residential Limited:\n\n22 Craven Terrace \nHyde Park \nLondon \nW2 3QH \nUnited Kingdom \n\nTel: 020 3005 7555 \nFax: 0870 922 3828 \n\nE-Mail: info@adamsmithresidential.net \nWebsite: www.adamsmithresidential.net";
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;