function FocusElement(formName,elementName)
	{
		var elem = document.forms[formName].elements[elementName];
		elem.focus();
	}	

function Form_Validator(theForm)
	{
		bReturn = true;
		
		if ((bReturn) && (validatePresent(document.forms["CommentForm"].comment) == false))
		{
			alert("Please enter a comment!");
			setTimeout("FocusElement('CommentForm','comment')",0);
			bReturn = false;
		}

		return (bReturn);
	}	