function otworzPodglad(){
	window.open('podglad.php', 'okienko', 'width=180', 'height=200', 'menubar=no', 'toolbar=no', 'location=no', 'scrollbars=no', 'resizable=no', 'status=no');
}
function podswietlPole(id){
	document.getElementById(id).style.backgroundColor = "#FFFF99";
}
function zgasPole(id){
	document.getElementById(id).style.backgroundColor = "white";
}
function pokaz(id){
	document.getElementById(id).style.display = "block";	
}
function ukryj(id){
	document.getElementById(id).style.display = "none";	
}
function sprawdzCzyCosWpisane(id){
	if (document.getElementById(id).value == ""){
		alert("Proszę podać klucz wyszukiwania!");
		return false;
	} else
		return true;
}
function sprawdzFormularzDodania(){
	if ((document.getElementById("kategoria").value == "")||
	(document.getElementById("tematOgloszenia").value == "")||
	(document.getElementById("trescOgloszenia").value == "")){
		alert ("Prosze wypelnic wymagane pola");
		return false;
	} else
		return true;
}