function okienko(adres,nazwa, sizex, sizey){
   var posx = (screen.width / 2) - (sizex / 2);
   var posy = (screen.height / 2) - (sizey / 2);
   void window.open(adres, nazwa , 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=' + sizex + ',height=' + sizey + ',left=' + posx + ',top=' + posy);
}

function mouseover(t){
  t.style.background='#D10C0C'; 
  t.style.color='white';	
}
function mouseout(t){
  t.style.background='white'; 
	t.style.color='#00036B';
}
function mousemove(t){
  t.style.background='#D10C0C'; 
  t.style.color='white';	
}

function parseForm_zapyt(thisForm){
	    //var returnVal=false;
	    if( thisForm.nazwa.value == '' ){
			  window.alert('Musisz podać imię i nazwisko !');
				thisForm.nazwa.focus();
	    }
			else if( thisForm.adres.value == ''){
			  window.alert("Podaj adres !");
				thisForm.adres.focus();
			}
			else if( thisForm.tel.value == ''  ||  isNaN(thisForm.tel.value)  ){
				//String s = thisForm.tel.value;
				//window.alert(s);
/*				if (s.indexOf("-")==-1){																		
				} else{*/
					window.alert("Podaj prawidłowy numer telefonu !");
					thisForm.tel.focus();				
			//	}*/
			}
			else if( thisForm.lok.value == '' ){
			  window.alert("Podaj lokalizację !");
				thisForm.lok.focus();
			}			
			else{
			  thisForm.submit();
			}
		}

		
function parseForm_zlecenie(thisForm){
	    if( thisForm.nazwa.value == '' ){
			  window.alert('Musisz podać imię i nazwisko !');
				thisForm.nazwa.focus();
	    }
			else if( thisForm.adres.value == '' ){
			  window.alert("Podaj adres !");
				thisForm.adres.focus();
			}
			else if( thisForm.tel.value == '' ||  isNaN(thisForm.tel.value) ){
			  window.alert("Podaj numer telefonu !");
				thisForm.tel.focus();
			}			
			else{
			  thisForm.submit();
			}
		}