function check_focus(id,txt) {if (document.getElementById(id).value == txt) document.getElementById(id).value = '';}
function check_blur(id,txt) {if (document.getElementById(id).value == '') document.getElementById(id).value = txt;}

function podmien(id1,id2,id3,stan,stan2){
	if (stan==1 && stan2==1){
			document.getElementById(id1).style.background='url(_gl/tlo.zakladka11.gif) no-repeat';
			document.getElementById(id2).style.background='url(_gl/tlo.zakladka21.gif) repeat-x';
			document.getElementById(id3).style.background='url(_gl/tlo.zakladka31.gif) no-repeat right top';
	}
	else if (stan==0 && stan2==1) {	document.getElementById(id1).style.background='url(_gl/tlo.zakladka1.gif) no-repeat';			
			document.getElementById(id2).style.background='url(_gl/tlo.zakladka2.gif) repeat-x';			
			document.getElementById(id3).style.background='url(_gl/tlo.zakladka3.gif) no-repeat';			
	}
	
	/*else if (stan==1 && stan2==0) {	document.getElementById(id1).style.background='url(_gl/tlo.zakladka1.gif) no-repeat';			
			document.getElementById(id2).style.background='url(_gl/tlo.zakladka2.gif) repeat-x';			
			document.getElementById(id3).style.background='url(_gl/tlo.zakladka3.gif) no-repeat';			
	}
	
	else if (stan==0 && stan2==0) {	document.getElementById(id1).style.background='url(_gl/tlo.zakladka11.gif) no-repeat';			
			document.getElementById(id2).style.background='url(_gl/tlo.zakladka21.gif) repeat-x';			
			document.getElementById(id3).style.background='url(_gl/tlo.zakladka31.gif) no-repeat top right';*/			
	//}
}

function openwindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}


 function pokaz(id){
	 if (document.getElementById(id).style.display=='none') document.getElementById(id).style.display='block';
	 else document.getElementById(id).style.display='none';
}

function check_szukaj(){
var k1 = document.getElementById('szukaj');
var k2 = document.getElementById('gdzie');
var error = document.getElementById('error');

if (k1.value=="wpisz słowo kluczowe" || k1.value=="") {error.innerHTML='Proszę wpisać szukaną frazę';k1.focus();return false;}
if (k1.value.length<3) {error.innerHTML='Proszę wpisać conajmniej 3 znaki';k1.focus();return false;}
if (k2.value=="Szukaj w...") {error.innerHTML='Proszę wybrać kategorię';return false;}
}


function check_kontakt()
{

var k1 = document.getElementById('imie');
var k2 = document.getElementById('telefon');
var k3 = document.getElementById('mail');
var k4 = document.getElementById('pytanie');
var error2 = document.getElementById('error2');

	if (k1.value =="") {error2.innerHTML='Proszę wpisać imię i nazwisko';k1.focus();return false;}
	if (k2.value =="") {error2.innerHTML='Proszę wpisać telefon';k2.focus();return false;}
	
	if (k3.value =="") {error2.innerHTML='Proszę wpisać adres e-mail';k3.focus();return false;}
	if (!(/^[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)*@([a-zA-Z0-9_-]+)(\.[a-zA-Z0-9_-]+)*(\.[a-zA-Z]{2,4})$/i.test(k3.value)))
	{error2.style.display='block';error2.innerHTML='Proszę wpisać poprawny adres e-mail'; k3.focus();blad=1;return false;}
	if (k4.value =="") {error2.innerHTML='Proszę wpisać treść';k4.focus();return false;}
}
