var message="All contents and graphics © Mirdha Group, INDIA\nContact mcpl@mirdhagroup.com 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;
// -->