function doSearch(baseLink) {
	window.location = baseLink + ':' + document.getElementById('searchQuery').value;
	return false;
}

$(function() {
	$('#galleryImages a').lightBox(
	{
		imageLoading: 'WWW_files/files/user_files/graphics/lightbox/lightbox-ico-loading.gif', // (string) Path and the name of the loading icon
		imageBtnPrev: 'WWW_files/files/user_files/graphics/lightbox/lightbox-btn-prev.gif', // (string) Path and the name of the prev button image
		imageBtnNext: 'WWW_files/files/user_files/graphics/lightbox/lightbox-btn-next.gif', // (string) Path and the name of the next button image
		imageBtnClose: 'WWW_files/files/user_files/graphics/lightbox/lightbox-btn-close.gif', // (string) Path and the name of the close btn
		imageBlank: 'WWW_files/files/user_files/graphics/lightbox/lightbox-blank.gif'
	});
});

var getLen = function(value) {
	var nr = 0;
	for (i = 0; i < value.length; i++) 
	{
		if (!value.charAt(i).match(/\s/)) 
		{
			nr++;
		}
	}
	return nr;
}
var updateForumTekstAreaLength = function(textarea, max, txtID) {
	if (textarea) 
	{
		len = textarea.value.length;
		if (len <= max) 
		{
			nr = max - textarea.value.length;
			var txt = document.getElementById(txtID);
			if (txt) 
			{
				txt.innerHTML = nr;
			}
		}
		else 
		{
			textarea.value = textarea.value.substr(0, max);
		}
	}
}

