/* -----------------------------------------------------------------------------------------------------------------------
	Fotoalbum
----------------------------------------------------------------------------------------------------------------------- */

function f_alb_show(show){
	document.home.show.value=show;
	document.home.submit();	
}

function f_alb_rev(rev_id){
	document.home.show_rev.value=rev_id;
	document.home.submit();	
}
function f_alb_ver(ev_id){
	document.home.show_ver.value=ev_id;
	document.home.submit();	
}

function f_alb_upload(id, kat){
	if(kat == 'rev'){
		document.home.alb_up.value='j';
		f_alb_rev(id);
	}
	if(kat == 'ver'){
		document.home.alb_up.value='j';
		f_alb_ver(id);		
	}
}

function f_del_veralb(pic_id, ev_id){
	document.home.del_alb.value=pic_id;
	f_alb_ver(ev_id);
}
function f_del_revalb(pic_id, rev_id){
	document.home.del_alb.value=pic_id;
	f_alb_rev(rev_id);
}


