﻿

function OnFormSubmit()
{
	var oTextBoxUserName	= document.getElementById('txtUserName');
	var oTextBoxEMail		= document.getElementById('txtEMail');
	var oTextBoxMsgTitle	= document.getElementById('txtMsgTitle');
	
	
	var	strUserName = oTextBoxUserName.value;
	var strEMail	= oTextBoxEMail.value;
	var strMsgTitle = oTextBoxMsgTitle.value;
	
	
	if(!TextHandler.TotalTrim(strUserName))
	{
		alert('חסר שם');
		oTextBoxUserName.focus();
		oTextBoxUserName.value = '';
		return false;
	}
	
	if(!TextHandler.IsValidEMail(strEMail))
	{
		alert('!דואר אלקטרוני לא חוקי');
		oTextBoxEMail.focus();
		oTextBoxEMail.value = '';
		return false;
	}
	
	if(!TextHandler.TotalTrim(strMsgTitle))
	{
		alert('חסר נושא');
		oTextBoxMsgTitle.focus();
		oTextBoxMsgTitle.value = '';
		return false;
	}
	
	document.getElementById('btnSubmit').disabled = true;
	return true;
}



