<!-- Verstecken für alte Browser --

 function confirmdel(URL) {
  	Check = confirm('Wollen Sie den ausgewählten Eintrag wirklich löschen?');
	if(Check == true) location=URL;
 }
 function surfto(form) {
        var myindex=form.dest.selectedIndex
        Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,height=400,width=600;'
        JGFINDER = window.open('jgfinder/'+form.dest.options[myindex].value,'jgfinder',Optionen)
 }
 function mailto(form) {
        var myindex=form.address.selectedIndex
        if(form.address.options[myindex].value != '') {
         location='mailto:'+form.address.options[myindex].value;
        }	
 }
 function check(form) {
        var myindex=form.address.selectedIndex
        if(form.address.options[myindex].value == '') {
         form.reset();
         form.elements[0].blur();
        }	
 }
 function NewWindow(URL,Name,Width,Height) {
        Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,height='+Height+',width='+Width+';'
        NewWindow = window.open(URL,Name,Optionen)
 }
// Ende Verstecken -->

