function WyslijFormularz()
{
	var czySubmit = true;
	
	imie = document.valid.imie_i_nazwisko;
		
	if ( imie.value.length == 0 ) { 
		imie.className='input_tError';	
		showHide('blad_imie_i_nazwisko','block');
		czySubmit = false;
	} else { 
		imie.className='input_v';
		showHide('blad_imie_i_nazwisko','none');
	}

	
	email = document.valid.email;
		
	if (email.value.length == 0 ) { 
		email.className='input_tError ';	
		showHide('blad_telefonemail','block');
		czySubmit = false;
	} 
	else 
	{ 
		email.className='input_v';
		showHide('blad_telefonemail','none');
	}

	tem = document.valid.temat;
		
	if ( tem.value.length == 0 ) { 
		tem.className='input_tError ';	
		showHide('blad_temat','block');
		czySubmit = false;
	} else { 
		tem.className='input_v';
		showHide('blad_temat','none');
	}
	
	t = document.valid.tresc;
		
	if ( t.value.length == 0 ) { 
		t.className='input_tError ';	
		showHide('blad_wiadomosc','block');
		czySubmit = false;
	} else { 
		t.className='input_v';
		showHide('blad_wiadomosc','none');
	}
	
	
	return czySubmit;
}
function showHide(inID,newvalue){
  theObj = document.getElementById(inID)
  if (newvalue!='') {	theDisp = newvalue; } else { 
  theDisp = theObj.style.display == "none" ? "block" : "none"
  }
  theObj.style.display = theDisp
}