
	function resetDN (theForm) {		
		theForm.designno.value = "";
	}

	function resetSrch (theForm) {		
		theForm.designno.value = "";
		theForm.category.selectedIndex = 0;
		theForm.gemstone.selectedIndex = 0;
	}

	var message = "This page is copyrighted, and \n";
	message += "all content is protected."; 

	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; 
	

	function new_window(url) {
			link = window.open(url,'Link','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=425,left=100,top=100');
			}
			
	function NoLink()	{
			return;
		}
		
