<!--
	function Popup(url,height,width){
		   window.open(url,"",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height);
		   }
		   
		   
	function validate(){
				theform = document.getElementById("ContactForm");
				
				
				if ( theform.r_Agreement.checked == 0){
					alert("You must agree to the Confidentiality Agreement in order to register.");
					return false;	
				}
			
				if ( theform.rw_Initials.value.length == 0){
					alert("You must initial this agreement.");
					return false;	
				}
				return true;
			}
			
	function preloadImages(){
		  var d=document; if(d.images){ if(!d.p) d.p=new Array();
		  var i,j=d.p.length,a=preloadImages.arguments; for(i=0; i<a.length; i++)
		  if (a[i].indexOf("#")!=0){ d.p[j]=new Image; d.p[j++].src=a[i];}}
		}
		
		function right(e) {
			var msg = "Sorry, you don't have permission to right-click.";
			
			if (navigator.appName == 'Netscape' && e.which == 3) {
				alert(msg);
				return false;
			}
			if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
				alert(msg);
				return false;
			}
			else return true;
		}
			
		function trap() 
		  {
		  if(document.images)
			{
			for(i=0;i<document.images.length;i++)
			  {
			  document.images[i].onmousedown = right;
			  document.images[i].onmouseup = right;
			  }
			}
		  }
//-->

		