function galleryOpen(path, gallery_id, page) {
	if (path) window.open('./modules/photogallery/photogallery_show.php?path='+path+'&gallery='+gallery_id+'&page='+page, 'gallery', 'toolbar=no,location=no,menubar=no,status=yes,scrollbars=no,resizable=yes,width=670,height=510');
}

function opw(path, width, height) {
	if (!width) width = 800;
	if (!height) height = 600;
	if (path) {
		var win = window.open(path, '_blank', 'toolbar=no,location=no,menubar=no,status=yes,scrollbars=no,resizable=yes,width='+width+',height='+height);
		if (win) win.focus();
		else alert("Máte blokované otváranie nových okien!");
	}
}

function menu(id) {
	var menuItem;
	if (id) {
		menuItems = document.getElementById(id);
		if (menuItems) menuItems.style.display = 'block';
	} else menuItems = document.getElementsByTagName('li');
	if (menuItems.length > 1) {
		for(var i in menuItems) {
			if (menuItems[i] && (menuItems[i].name == 'sub-item')) menuItems[i].style.display = 'block';
		}
	}
}

function validate_form(form) {
	if (form) {
		for (var i in form.elements) {
			if (form.elements[i] && (form.elements[i].value == '')) {
				alert('Položka ' + form.elements[i].title + ' nesmie byť prázdna!');
				form.elements[i].focus();
				return false;
			}
		}
		return true;
	} else return false;
}
