</script>
<script language="Javascript">
// Anti-LaMeR Leech Script1999
// by ChipThaMac of course
// the webmaster of ProGGz.com
// Script is free if you leave copyright intact
// This script will close any internet explorer browser when the view trys
// to right click to steal your source or linx, hehehe
function click() {
if ((event.button==2) || (event.button==3)) {
now = new Date()
var hours = now.getHours()
var minutes = now.getMinutes()
var seconds = now.getSeconds()
var ap = "AM"

  if (hours > 12)
      {var ap = "PM" , hours = hours-12 ;}

  if (minutes < 10)
      {minutes = "0"+minutes}

  if (seconds < 10)
      {seconds = "0"+seconds}


window.status = hours+":"+minutes+":"+seconds+" "+ap
document.title = hours+":"+minutes+":"+seconds+" "+ap

click()
}
}
document.onmousedown=click
</script> </p>