function testuj(f) 
{
	
if (f.imie.value.length<1)
   {
   	f.imie.focus();
   	alert("Nie podałeś imienia lub nazwiska\nYou did not enter the name or surname");
   	return false;
   }

if (f.email.value.length<1)
	{
   	f.email.focus();
   	alert("Nie podałeś e-maila\nYou did not enter an e-mail");
   	return false;
	}
   
if (f.email.value.indexOf('@') < 0)
	{
	f.email.focus();
	alert("To nie jest poprawny email\nThis is not a valid email address");
	return false;
	}
if (f.email.value.indexOf('.') < 0)
    {
    f.email.focus();
   	alert("To nie jest poprawny email\nThis is not a valid email address");
	return false;
	}

if (f.zapytanie.value.length<1)
	{
   	f.zapytanie.focus();
   	alert("Nie wpisałeś zapytania\nYou have not entered query");
   	return false;
	}
		
  return true;
}

function kolor_w(f) 
{

  if (f.value.length>=1)
   {
   	f.style.backgroundColor='#ffffff'
   }
  else
   {
   	f.style.backgroundColor='#ffcbaa'
   }

  return true;
}

function kolor_nw(f) 
{

  if (f.value.length>=1)
   {
   	f.style.backgroundColor='#ffffff'
   }
  else
   {
   	f.style.backgroundColor='#eeeeee'
   }

  return true;
}

function kolor_email(f) 
{

  if (f.value.length<1)
   {
   	f.style.backgroundColor='#ffcbaa'
   }
  if (f.value.indexOf('@') < 0)
   {
   	f.style.backgroundColor='#ffcbaa'
   }
  if (f.value.indexOf('.') < 0)
   {
   	f.style.backgroundColor='#ffcbaa'
   }
  else
   {
   	f.style.backgroundColor='#ffffff'
   }

  return true;
}

function zaladuj(o) 
{
  document.getElementById('obraz').src = o;
}
