<!--
function checkParams () {
  // Create variable is_input to see if there is a ? in the url
  var is_input = document.URL.indexOf('?');
  
  // Check the position of the ? in the url
  if (is_input != -1)
  { 
  	// Create variable from ? in the url to the end of the string
  	//addr_str = document.URL.substring(is_input+1, document.URL.length);
		
		//check to see if it is the pay pal parameters
		if (document.URL.length > 60){
			 document.write("<p id=\"subtitle\">Thank you for your donation!</p>");
		}
		
		//paramIndex = document.URL.indexOf('&');
		//paramString = document.URL.substring(paramIndex+1, document.URL.length);
		
	}

-->

