function CheckForm()
{
	var isOK = true;
	var isOKEmail;
	
	var Email = trim($('#txtEmail').val());
	
 	$('#divAgreedCBMsg').html('&nbsp;');
 	$('#spnEmailMsg').html('&nbsp;');

	//Check user agriment
	var AgreedCB = $('input:checkbox[@id*="AgreedCB"]').get(0).checked;
	if(!AgreedCB)
	{
		$('#divAgreedCBMsg').html('יש לאשר את תנאי השימוש');
		isOK = false;
	}

	//Email Validation	
	if(Email == TextEmail_Text)
	{
		$('#spnEmailMsg').html('יש להכניס את כתובת אי-מייל שלך');
		isOK = false;
	}
	else
	{
		isOKEmail = checkEmail(Email);
		if(!isOKEmail)
		{
			$('#spnEmailMsg').html('כתובת האי- מייל לא תקינה');
			isOK = false;
		}
		else
		{
			var QRST = "/Search/SearchActions.aspx?Action=CheckMail&el=" + Email + "&JobID=-1";
			var Res = ($.ajax({url:QRST,async: false}).responseText);
			if(Res == "1")
			{
				$('#spnEmailMsg').html('אימייל זה קיים במערכת');
				isOK = false;
			}
		}
	}
	
	return isOK;
}

function checkEmail(e)
{
	var MailExp=/^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/ ;
	var isOK = MailExp.test(e) ;
	return isOK;
}

function EmailOnFocus()
{
	//Css manipulation
	if($('#txtEmail').val() == TextEmail_Text)
		$('#txtEmail').val('');
	$('#txtEmail').css('color','#000');
	$('#txtEmail').css('direction','ltr');
	$('#spnEmailMsg').html('&nbsp;');
}

function EmailOnBlur()
{
	//Css manipulation
	if($('#txtEmail').val() == '' || $('#txtEmail').val() == TextEmail_Text)
	{
		$('#txtEmail').val(TextEmail_Text);
		$('#txtEmail').css('direction','rtl');
	}
}

function AgreedCBOnClick()
{
	//Check user agreement
	var AgreedCB = $('input:checkbox[@id*="AgreedCB"]').get(0).checked;
	if(AgreedCB)
	{
		$('#AgreedCB').css('border','0px solid red');
		$('#divAgreedCBMsg').html('&nbsp;');
	}
}
function PlayVideo()
{
	$('#divVideo').html('<object width="284" height="216"><param name="movie" value="http://www.youtube.com/v/8fIvI0qF-FM&hl=en&fs=1&autoplay=1&rel=0"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/8fIvI0qF-FM&hl=en&fs=1&autoplay=1&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="284" height="216"></embed></object>');
}
