



	function SendHandler()

	{
	
		Err = '';
		
		if( document.getElementById('name').value == '') 
		{
			Err += '* "Your name" is empty... \n';
		}
		
		if(document.getElementById("company_name").value == '') 
		{
			Err += '* "Your company name" is empty... \n';
		}

		if(document.getElementById("tel").value == '') 
		{
			Err += '* "Your tel" is empty... \n';
		}
		
		if(document.getElementById('email').value == '') 
		{
			Err += '* "E-Mail" is empty.... \n';
		}	else
			{
				if(!document.getElementById('email').value.match(/^\S+@\S+\.\S+$/))
				{
					Err += '* "E-Mail" is not correct... \n';
				}

			}

	

	    

		if(Err == '')
		{
			alert("Your message has reached us, and we will contact you as soon as we can. \n\n" );

		    document.getElementById('now_url').value=location.href;

			document.SendMail.submit();

		}else{

			alert("Error! \n\n" + Err);

		}	

	}


