			function isValidEmail2(str) 
				{
				 return (str.indexOf(".") > 0) && (str.indexOf("@") > 0);
				}
	

			function chck_contact_form()
				{
				  
				   if (isValidEmail2(document.getElementById('email').value) == false)
						{
						 document.getElementById('valid').innerHTML='Podany adres email jest nieprawidłowy';
						  return false;
						}
				 
				 if (document.getElementById('name').value=='')
					{
				     document.getElementById('valid').innerHTML='Proszę podać imię';
					 return false;
					}
				
				if (document.getElementById('surname').value=='')
					{
				     document.getElementById('valid').innerHTML='Proszę podać nazwisko';
					 return false;
					}
					
				if (document.getElementById('topic').value=='')
					{
				     document.getElementById('valid').innerHTML='Proszę podać temat wiadomości';
					 return false;
					}
					
				if (document.getElementById('message').value=='')
					{
				     document.getElementById('valid').innerHTML='Proszę wpisać treść wiadomości';
					 return false;
					}			
				  
				 
				 return true;
				}
	

