// -=+=- Script Pembatalan Klick Kanan, Modified by Amri Perdinan® Munthe -=+=-
<!--
function content ()
{
	window.status = '>>:<< Set By Amri Perdinan® Munthe >>:<<';
	timerID= setTimeout ("content()",25);
}
content();
  function right(e)
  {
  var msg = "Sorry,You Don't Have Permission To Right-Click!";
  if (navigator.appName == 'Netscape' && e.which == 3)
	{
	alert(msg); // Delete this line to disable but not alert user
	return false;
	}
	else
  if (navigator.appName == 'Microsoft Internet Explorer' && event.button == 2)
	{
	alert(msg); // Delete this line to disable but not alert user
	return false;
	}
	return true;
  }
  document.onmousedown = right;
 
//-->