var message="All contents / graphics © Vineet Associates, INDIA\nContact info@realestate-india.net for more details"; // Message for the alert box

// Don't edit below!
function click(e) {
					if (document.all) 
					{
						if (event.button == 2)
						{
							alert(message);
							return false;
						}
					}

				}
document.onmousedown=click;
// -->