<!--

//list of banned words
var bannedWords = new Array ("http://", "https://");


function validate_form() 
{		
		valid = true;
			
		for ( var j = 0; j < bannedWords.length; ++j )
			{
			if 	(
				( document.psrr.psrr_studentfullname.value.indexOf (bannedWords[j]) >= 0 ) ||
				( document.psrr.psrr_familyname.value.indexOf (bannedWords[j]) >= 0 ) ||
				( document.psrr.psrr_address.value.indexOf (bannedWords[j]) >= 0 ) ||
				( document.psrr.psrr_other.value.indexOf (bannedWords[j]) >= 0 ) ||
				( document.psrr.psrr_livewithcomments.value.indexOf (bannedWords[j]) >= 0 )
				)
				{
				alert ("We're soory, but you cannot use this form to send urls, please remove all instances of HTTP and try again");
				valid = false;
				}
			}
		
        return valid;
		
}		
-->