function sspcdxpre(form)
{

	var re = new RegExp;
	
	re.compile("[.\r\n]*?[A-Za-z]+://[A-Za-z0-9-_]+\\.[A-Za-z0-9-_%&\?\/.=]+[.\r\n]*?");
	
	if (re.test(form.comments.value))
	{
		alert("You cannot enter URLs in the comments field.");
		return false;
	}

	if (form.sspcd.value == 'RT8WP2' || form.sspcd.value == 'rt8wp2')
	{
		return true;
	}
	else
	{
		alert("The confirmation code you entered is invalid. Please try again.");
		return false;
	}
}
