function acceptTerms(URL)
  {
  var r=confirm("I have read and understood the website Copyright Notice.")
  if (r==true) 
    {
	window.location=(URL)
	}
  else
    {
    alert("No dice.")
    }
  }

