function conf_loeschen(loc,del,id) {
	if (confirm("Wollen Sie den Eintrag loeschen?\n")) 
	{ 
	location.href=loc+"?"+del+"="+id;	
	} else { 
			          /* abbrechen*/
	} 
}

function showSubMenu(id)
{
 if(document.getElementById(id).style.display == 'none')
 {
  document.getElementById(id).style.display = 'block';
 }

}
function hideSubMenu(id)
{
 if(document.getElementById(id).style.display == 'block')
 {
  document.getElementById(id).style.display = 'none';
 }
}

function showLinkColor(id)
{
  document.getElementById(id).style.color = '#CC6633';
}
function hideLinkColor(id)
{
  document.getElementById(id).style.color = '#434343';
}


function sf(){
	document.loginform.login.focus();
}
