<!--
// Start of Protect Code Script


function mouseDown(e) {
  var copyRight = 
	"Copyright (c)1996-2003 Bunnysoft !\n\n" +
	"All HTML code and images contained\n" + 
	"within are the intellectual property \n" + 
	"of this company \n\n" +
	"Do not attempt to steal or copy them."
 if (parseInt(navigator.appVersion) > 3) {
  var clickType = 1;
  if (navigator.appName == "Netscape") clickType = e.which;
  else clickType = event.button;
  if (clickType != 1) {
    alert(copyRight);
    }
  }
  return true;
}
if (parseInt(navigator.appVersion) > 3) {
 document.onmousedown = mouseDown;
 if (navigator.appName == "Netscape") 
  document.captureEvents(Event.MOUSEDOWN);
}
-->
