	<!--
	function Validate(Form)
	{

	  if (Form.c.selectedIndex == 0)
	  {
	  	alert("Please select an answer for feedback question 1.");
		Form.c.focus();
		return (false);
	  }
	  
	  if (Form.d.selectedIndex == 0)
	  {
	  	alert("Please select an answer for feedback question 2.");
		Form.d.focus();
		return (false);
	  }
	  
	  if (Form.e.selectedIndex == 0)
	  {
	  	alert("Please select an answer for feedback question 3.");
		Form.e.focus();
		return (false);
	  }
	  
	  if (Form.f.selectedIndex == 0)
	  {
	  	alert("Please select an answer for feedback question 4.");
		Form.f.focus();
		return (false);
	  }

	  if (Form.g.value.length > 0)
	  {
		var maxlimit = 400;
		if (Form.g.value.length > maxlimit) { // if too long...trim it!
		  alert('Maximum number of characters exceeded please rewrite your comment');
		  return false;
		}
		re = /(http|https|ftp)([^ ]+)/ig;	// Removes them if they start with http
		re2 = /(www.)([^ ]+)/ig;	// Removes them if they start with www
		str = Form.g.value;
		var words=str.split(" ") //split using blank space as delimiter
		var a = "";
		for (i=0; i<words.length; i++) { 
		  a = words[i]; alert(a.length);
		  if ((a.length) > 20 ) { 
		    alert('Please be sure to include a space between each word. Website urls are not allowed.');
		    return false;
		  }
		}
		//newstr = str.replace(re, '<a href="$1$2">$1$2</a>');
		//newstr = str.replace(re, '');
		//newstr = str.replace(re2, '');
		if ( (str.search(re) >= 0) || (str.search(re2) >= 0) ) {
		  alert('Please remove the website addresses from your submission and try again');
		  return false;
		}
		
	  }
	  return (true);
	}

	//-->
