/* -----------------------------------------------------------------------------------------------------------------------
	f_work
----------------------------------------------------------------------------------------------------------------------- */

function f_work(div_name){
	document.home.work.value = div_name;
	document.home.submit();
}


/* -----------------------------------------------------------------------------------------------------------------------
	Vor und Zurück
----------------------------------------------------------------------------------------------------------------------- */

function f_back(){
	history.back();
}

function f_forward(){
	history.forward();
}


/* -----------------------------------------------------------------------------------------------------------------------
	Logout
----------------------------------------------------------------------------------------------------------------------- */

function f_logout(){
	document.home.work.value = 'intern';
	document.home.logout.value='j';
	document.home.submit();
}


/* -----------------------------------------------------------------------------------------------------------------------
	Für Online Anmeldung
----------------------------------------------------------------------------------------------------------------------- */

function f_home_anmeldung(ev_id){
	document.home.work.value = 'anmeldung';
	document.home.home_to_anmeldung.value=ev_id;
	document.home.submit();	
}





