var	Page_ValidationActive = false;

// onload event (works with ALL BROWSERS in this world...)
ValidatorOnLoad();

// some common functions
function ValidatorOnSubmit()
{
// exectute only if page validation is activated
	if (Page_ValidationActive) {
		return ValidatorCommonOnSubmit();
	}
	return true;
}

