function search_() {

	string = document.getElementById('search').value;

	if(string == "") { 

		alert('Puste pole szukaj...'); 

	} else {

		self.location = '/szukaj/'+string+'';

	}

}



function n_add_() {

	string = document.getElementById('newsletter_input').value;

	if(string == "") { 

		alert('Puste pole szukaj...'); 

	} else {

		self.location = '/newsletter/zapisz/'+string+'';

	}

}


function n_del_() {

	string = document.getElementById('newsletter_input').value;

	if(string == "") { 

		alert('Puste pole szukaj...'); 

	} else {

		self.location = '/newsletter/wypisz/'+string+'';

	}

}

function clearForm(formIdent) { 
   document.formIdent.reset(); 
}


function next_news(page) {
   $("#nxas").load("/core/ajax/news.php", {page: page}, function(){

	});
}

