
//public + admin
function HideSelect() {
	for(var x=0; x < document.getElementsByTagName('select').length; x++)
	document.getElementsByTagName('select')[x].style.visibility = 'hidden';
	}

//public + admin
function ShowSelect() {
	for(var x=0; x < document.getElementsByTagName('select').length; x++)
	document.getElementsByTagName('select')[x].style.visibility = 'visible';
	}

//public
function LoginFokus() {
	if(document.loginform) 
		document.loginform.user.focus();
	}

//public
function ExposeFunctionsTop(id) {
	document.getElementById(id).style.border = '1px solid #d7d7d7';
	document.getElementById(id).style.background = '#efefef';
	}

//public
function ExposeFunctionsDown(id) {
	document.getElementById(id).style.border = '1px solid #e2e2e2';
	document.getElementById(id).style.background = '#f8f8f8';
	}
	
//public Expose Funktion
function ObjektMemo() {
		location.href = 'index.php?memo=true';
}

//public Expose Funktion
function ObjektPdf(file) {
		window.open('pdf/'+file);
}

