function validateWebTranslation()
{
	var f = document.webtransfrm;
	
	if(trimString(f.cust_name.value) == '')
		return showError(f.cust_name, 'Please provide name');
	
	if(trimString(f.cust_email.value) == '')
		return showError(f.cust_email, 'Please provide email address');
		
	if ((f.cust_email.value.indexOf ('@',0) == -1) || (f.cust_email.value.indexOf('.', 1) == -1) || f.cust_email.value.indexOf(' ', 1) != -1)
			return showError(f.cust_email, 'Invalid email address');
	
	if(trimString(f.cust_url.value) == '')
		return showError(f.cust_url, 'Please provide Url of website');
	
	if(f.cust_url.value.indexOf('.', 1) == -1 || f.cust_url.value.indexOf(' ', 1) != -1 || f.cust_url.value.charAt(0) == '.')
		return showError(f.cust_url, 'Invalid url');
	
/*	if(trimString(f.cust_phone.value) == '')
		return showError(f.cust_phone, 'Please provide your telephone number');
*/	
	if(trimString(f.cust_srclang.value) == '')
		return showError(f.cust_srclang, 'Please provide source language of document');
	
	if(trimString(f.cust_targetlang.value) == '')
		return showError(f.cust_targetlang, 'Please provide target language of document');
	
	if(trimString(f.completion_time.value) == '')
		return showError(f.completion_time, 'Please provide Expected time of completion');
	
	f.submit_button.disabled = true;
	return true;
}
