
<!--

var message="Sorry, This function has been disabled! \n\nAll content including the designs and images on this website\nare copyrighted material belonging to Mann Tours. \n\nTo bookmark this page please use your browsers toolbar menu\nor press ctrl+B"; 

function click(j) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (j.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// --> 

