// JavaScript Document

function verifyNoTags(formName, formField)
{
	var str = document.forms[formName][formField].value;

	if(str.indexOf("<") != -1){
		
		alert("Illegal character (<)");
		
		str = str.replace("<","");
		str = str.replace(">","");
		
		document.forms[formName][formField].value = str;
		document.forms[formName][formField].focus();
		
		return false;
	}
	
	document.forms[formName].submit();
	return true;
}
