
// Menü
function highlight(id)
{
	document.getElementById('li_' + id).style.backgroundColor = '#666666';
	document.getElementById('men_' + id).style.backgroundColor = '#666666';
}
function resetMen(id)
{
	document.getElementById('li_' + id).style.backgroundColor = '#ECECEC';
	document.getElementById('men_' + id).style.backgroundColor = '#ECECEC';
}


function inputEffect(obj, name){
	
	if(obj.value == ""){
		obj.value = name;
	}
	
}


function edit(who, what) {
	
	window.open("edit/edit_tbl_heads.php?who="+who+"&what="+what+"","Bearbeiten","menubar=0,scrollbars=1,resizable=0,width=680,height=500");
	
}

function editMenu(menu) {
		
	window.open("edit/edit_menus.php?menu="+menu+"","Bearbeiten","menubar=0,resizable=0,scrollbars=1,width=550,height=350");
	
}

function editMain() {
		
	window.open("edit/edit_mainsettings.php","Bearbeiten","menubar=0,scrollbars=1,resizable=0,width=440,height=580");
	
}

function editTeam(fiale) {
		
	window.open("edit/edit_team.php?fiale="+fiale+"","Bearbeiten","scrollbars=1,menubar=0,resizable=0,width=628,height=680");
	
}

function editMarquee(){
	
	window.open("edit/edit_marquee.php","Bearbeiten","menubar=0,resizable=0,scrollbars=1,width=540,height=480");
}

function editServiceBoxLeft(){
	
	window.open("edit/edit_servicebox.php","Bearbeiten","menubar=0,resizable=1,scrollbars=1,width=620,height=680");
}

function editServiceItems(type){
	
	window.open("edit/edit_serviceitems.php?type=" + type,"Bearbeiten","menubar=0,resizable=1,scrollbars=1,width=620,height=480");
}

function editNews(){
	
	window.open("edit/edit_news.php","Bearbeiten","menubar=0,resizable=1,scrollbars=1,width=720,height=580");
}

