function myConfirm(path,items){if(confirm('Möchten Sie den Eintrag "'+items+'" wirklich löschen?'))
{window.location.href=path;}}
function GoTo(select){var wert=select.options[select.options.selectedIndex].value;location.href=wert;select.form.reset();}
function popup(path)
{screenheight=screen.height/2;screenwidth=screen.width/2;windowheight=600/2;windowwidth=800/2;positionx=screenwidth-windowwidth;positiony=screenheight-windowheight;window.open(path,"popup","width=750,height=400,left="+positionx+",top="+positiony+",scrollbars=yes,resizable=no");}
var fenster=null;function popupImage(imageurl,imagewidth,imageheight,imagetitle)
{if(fenster!=null&&fenster.closed==false)
fenster.close();fenster=window.open('','Fenster','width='+imagewidth+',height='+imageheight+',dependent=yes');with(fenster.document)
{writeln('<HTML><HEAD><TITLE>'+imagetitle+'</TITLE></HEAD>');writeln('<BODY BGCOLOR="#000000" LINK="#666666" VLINK="#666666" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');writeln('<a href="javascript:self.close();"><img src="'+imageurl+'" border="0" alt="'+imagetitle+'"></a>');writeln('</BODY></HTML>');close();}
fenster.focus();}
function calc_length(chr)
{doc=document.getElementById('txt_description_short').value;l=chr-doc.length;if(l<0)l=0;document.getElementById('maxlength').innerHTML='('+l+' Zeichen verbleibend)';if(doc.length>chr)alert(chr+' Zeichen erreicht!');}