<!-- Begin

function ValidateContactFields()
{
	var validationMessage = document.getElementById('validationMessage');
	var txtPhone = document.getElementById('txtPhone');
	var txtEmail = document.getElementById('txtEmail');
	var txtEmailConfirm = document.getElementById('txtEmailConfirm');
	if ((txtPhone.value == '' && (txtEmail.value == '' || txtEmailConfirm.value == '')) ||
		(txtEmail.value != '' &&  txtEmailConfirm.value == ''))
	{
		validationMessage.style.display = 'inline';
		if (txtPhone.value == '' && txtEmail.value == '')
		{
			txtPhone.focus();
		}
		else if (txtEmail.value == '')
		{
			txtEmail.focus();		
		}
		else
		{
			txtEmailConfirm.focus();		
		}		
		return false;
	}
	else
	{
		validationMessage.style.display = 'none';
		return true;
	}
}

function blockError(){return true;}
window.onerror = blockError;


// -->