	// Have to provide a hack to fix up a problem with the validation.
	// There seems to be a version difference in the way the form submits
	// the form and expects a return value from the embedded validation
	// routines.
	function NewSubmit()
	{
		if (Page_ValidationActive) 
		{
		 		ValidatorCommonOnSubmit();
		}
	}
	if (document.forms.length == 2)
	{
		document.forms[0].onsubmit = NewSubmit;
		document.forms[1].onsubmit = NewSubmit;
	}
	else
		document.forms[0].onsubmit = NewSubmit	

