// JavaScript Document
function funcValidate(objForm)
{
	var bCorrect = true;
	bCorrect = ValidateTextBox("Name",objForm.txtName,true,250,false,false,false,false,false);
	bCorrect = (bCorrect?ValidateTextBox("E-mail address",objForm.txtEmail,true,250,false,false,false,true,false):false);
	bCorrect = (bCorrect?ValidateTextBox("Country code",objForm.txtPhone1,true,250,false,true,false,false,false):false);
	bCorrect = (bCorrect?ValidateTextBox("Area code",objForm.txtPhone2,false,250,false,true,false,false,false):false);
	bCorrect = (bCorrect?ValidateTextBox("Phone Number",objForm.txtPhone3,true,250,false,true,false,false,false):false);
	bCorrect = (bCorrect?ValidateDropdownList("Country",objForm.cboCountry,true,250):false);
	bCorrect = (bCorrect?ValidateTextBox("Address",objForm.textAddress,true,65000,false,false,false,false,false):false);
		objForm.hdCountry.value = objForm.cboCountry.options[objForm.cboCountry.selectedIndex].text;
	return bCorrect;
}