function openBooks(el2, name_start){
	var el = null;//document.getElementById(el2);
	
	var tab = document.getElementById(el2);

	  if(name_start==null)
		if(tab.style.display == 'none')
			tab.style.display = 'inline';
		else
			tab.style.display = 'none';
		
		if(name_start!=null){
			var tab2 = document.getElementById(name_start);
			tab2.style.display = 'none';
			tab.style.display = 'inline';
		}

} 

function valid_form_nwslt(f)
{

  if(f.email.value == '')
  {
    alert('Prosimy wpisać adres e-mail');
	return false;
  }

  if (!f.email.value.match(/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i)) {
  alert('Wprowadzony adres e-mail jest nieprawidłowy'); 
  return false;
 }	
  
}