<!--
    function StopContextMenu()
    {
		return false; 
	}
	//document.oncontextmenu = StopContextMenu;
    
	function StopMouse(e)
	{
		if(navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))
		{
			alert("www.BestofCampus.com");
			return false;
		}
      	else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3))
		{
 			alert("www.BestofCampus.com");
			return false;
 		}
		return true;
    } 
	//document.onmousedown=StopMouse;      

	if(document.layers)
	{
		window.captureEvents(Event.MOUSEDOWN); 
	}
//-->
