<!--
// This script prevents mouse right clicks.
var message="Text and images on this website        \nare copyrighted works and cannot  \nbe reproduced or reused without \nthe express written consent of\nPure Water Systems, Inc.\n \n\251 2004 Pure Water Systems, Inc.\n    ALL RIGHTS RESERVED"; 

function click(e)
{
   if (document.all) 
   {
      if (event.button == 2) 
	  {
	     alert(message);
		 return false;
	  }
	}
	if (document.layers) 
	{
	   if (e.which == 3)
	   {
	      alert(message);
		  return false;
	   }
	}
}
if (document.layers)
{
   document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// --> 