function getMasterString()
{
	return "Sorry, we can not complete your request.\nKindly provide us the missing or incorrect information enclosed below.\n";
}


// Function for validating send question form

function ValidateSendQuestionForm()
{ 
	masterStr = "Sorry, we can not complete your request.\nKindly provide us the missing or incorrect information enclosed below.\n";
	var error = '';
	var regEmail = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;

	if(document.getElementById('frmSendQuestion').frmEmail.value == "")
	{
		error += "\n- Email is required.";
	}
	else if(!regEmail.test(document.getElementById('frmSendQuestion').frmEmail.value))
	{
		error +='\n- Email must contain an e-mail Address.';
	}
	if(document.getElementById('frmSendQuestion').frmQuestion.value == "")
	{
		error += "\n- Question is required.";
	} 
	
	if(error == "")
	{
		return true;
	}
	else
	{
		error = masterStr + error;
		alert(error);
		return false;
	}
	
}
