<!--
	function openResourceDetailsWindow(LinkLocation){
//		resourceWindow =  window.open(LinkLocation,'_blank','status=yes,toolbar=yes,menubar=no,location=no,scrollbars=yes,resizable=yes,width=700,height=600,left=50,top=25');
		resourceWindow =  window.open(LinkLocation,'_blank','status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=600,height=600,left=25,top=25');
		resourceWindow.focus();
	}

	function openResourceDetailsWindowBig(LinkLocation){
//		resourceWindow =  window.open(LinkLocation,'_blank','status=yes,toolbar=yes,menubar=no,location=no,scrollbars=yes,resizable=yes,width=700,height=600,left=50,top=25');
		resourceWindow =  window.open(LinkLocation,'_blank','status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=700,height=600,left=25,top=25');
		resourceWindow.focus();
	}

   function openResourceDetailsWindowHuge(LinkLocation){
//    resourceWindow =  window.open(LinkLocation,'_blank','status=yes,toolbar=yes,menubar=no,location=no,scrollbars=yes,resizable=yes,width=700,height=600,left=50,top=25');
      resourceWindow =  window.open(LinkLocation,'_blank','status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=800,height=600,left=25,top=25');
      resourceWindow.focus();
   }

	function openSelectionWindow(Location,winName){
//		window.open(Location,winName,'status=yes,toolbar=yes,menubar=no,location=no,scrollbars=yes,resizable=yes,width=700,height=600,left=50,top=25');
		var windowName = window.open(Location,winName,'status=yes,toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes,width=700,height=600,left=50,top=25');
		//windowName.focus();
	}


	function openEditWindow(Location,winName){
		var windowName = window.open(Location,winName,'status=yes,toolbar=no,menubar=no,location=yes,scrollbars=yes,resizable=yes,width=900,height=700,left=50,top=25');
		windowName.focus();
	}


	function Fokussieren(){
   	document.direktsuche.name.focus();
	}

	function aktJahr(){
		var Datum = new Date();
		document.write(Datum.getFullYear());
	}

	function anzeigen(ID){
		if(document.getElementById(ID).style.display=='none') {
			document.getElementById(ID).style.display='block';
		} else {
			document.getElementById(ID).style.display='none';
		}
	}

//-->
