<!-- 
	// JavaScript Document
	// Author: Daniel Gal
	// URL: http://www.danielgal.de
	
	var wp_tpl = "http://www.danielgal.de/wp-content/themes/danielgal"
	
	function suchformular_out() {
		var obj = document.getElementById("suchformular");
		obj.style.backgroundImage="url(" + wp_tpl + "/images/suchformular-out.gif)";
	}
	
	function suchformular_over() {
		var obj = document.getElementById("suchformular");
		obj.style.backgroundImage="url(" + wp_tpl + "/images/suchformular-over.gif)";
	}

	function neuesFenster(url) { 
		var eigenschaft,sbreite,shoehe,fenster02; 
		
		//Bildschirmauflösung ermitteln: 
		var ns6=(!document.all && document.getElementById); 
		var ie4=(document.all); 
		var ns4=(document.layers);
		
		if(ns6||ns4) { 
			sbreite = innerWidth; 
			shoehe = innerHeight; 
		} else if(ie4) { 
			sbreite = document.body.clientWidth; 
			shoehe = document.body.clientHeight; 
		} 
		
		fensterbreite=outerWidth;
		shoehe=shoehe+100; 
		x=(sbreite-fensterbreite); 
		
		neuesFenster=window.open(url, 'NewWindows', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width='+fensterbreite+', height='+shoehe+', left='+x+', top=0'); 
	}; 	 
// --> 