function zmiana(marka,lista){
		var dc = document.getElementById("doWpisywania");
		dc.innerHTML = "<b>"+marka+"</b>: " + lista;
}
function sprawdzaj(ja,tresc_bledu_maila, tresc_bledu_tresci, tresc_bledu_numeru){
    var wysylaj = true;
        if(ja.mail.value=="" && ja.telefon.value==""){
            wysylaj = false;
            id = document.getElementById("mail");
            id.style.color = "#ff0000";
            id = document.getElementById("mail_info");
            id.innerHTML = tresc_bledu_maila;
            id = document.getElementById("telefon");
            id.style.color = "#ff0000";
            id = document.getElementById("telefon_info");
            id.innerHTML = tresc_bledu_numeru;
            }else if(ja.telefon.value!=""){
                id = document.getElementById("mail");
		id.style.color = "#000000";
		id = document.getElementById("mail_info");
		id.innerHTML = "";
		id = document.getElementById("telefon");
		id.style.color = "#000000";
		id = document.getElementById("telefon_info");
		id.innerHTML = "";
		}else if(SprawdzEmail(ja.mail.value)==false){
                    wysylaj = false;
                    id = document.getElementById("mail");
                    id.style.color = "#ff0000";
                    id = document.getElementById("mail_info");
                    id.innerHTML = tresc_bledu_maila;
                }else{
                    id = document.getElementById("mail");
                    id.style.color = "#000000";
                    id = document.getElementById("mail_info");
                    id.innerHTML = "";
                }
        var wzor_tresci = "[a-zA-Z]+";
        var tresc = ja.tresc.value;
        
	if(tresc.toString().match(wzor_tresci)==null){
            wysylaj = false;
            id = document.getElementById("tresc");
            id.style.color = "#ff0000";
            id = document.getElementById("tresc_info");
            id.innerHTML = tresc_bledu_tresci;
        }else{
            id = document.getElementById("tresc");
            id.style.color = "#000000";
            id = document.getElementById("tresc_info");
            id.innerHTML = "";
	}
        if(wysylaj)document.formularz_kontaktowy.submit();
}
function SprawdzEmail(AdresEmail){
    var TestEmail = /^([A-Za-z0-9]*)@([A-Za-z0-9]*(.[A-Za-z]*)+)$/;
    var Wynik = AdresEmail.match(TestEmail);
    if(Wynik==null)return false;
    else return true;
}
function load_k() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map2"));
        map.setCenter(new GLatLng(50.57102, 19.164962), 13);
		  map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
		  var point = new GLatLng(50.5760, 19.1600);
		  map.addOverlay(new GMarker(point));
      }
    }
    function load_w() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(49.69162, 19.7259), 13);
		  map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
		  var point = new GLatLng(49.6880, 19.736);
		  map.addOverlay(new GMarker(point));
      }
    }