<!--
function Error_Get(objField, strBad, strError)
{
	if (objField.value == strBad) {
		alert(strError);
		objField.focus();
		return true;
	}
	
	return false;
}
// -->