	
	
	
	
	// Rollover-Bildwechsel (Index-Seite => Navi etc.)
		function changeImage(name, zustand) {
		if (zustand == '_hi' || (zustand == '')) {
				eval("window.document.images['" + name + "'].src = 'img/" + name + zustand + ".gif';");
			} else {
			eval("window.document." + name + ".src = 'img/" + name + zustand + ".gif';");
		}
		return;
	}
	
	
		// Rollover-Bildwechsel (Unterseiten => Navi etc.)
		function change2Image(name, zustand) {
		if (zustand == '_hi' || (zustand == '')) {
				eval("window.document.images['" + name + "'].src = '../img/" + name + zustand + ".gif';");
			} else {
			eval("window.document." + name + ".src = '../img/" + name + zustand + ".gif';");
		}
		return;
	}
	
	
	
		//Pop-Up-Fenster Impressum auf Homepage
		function fensterI()
		 {
		   var win;
		   
			 win=window.open("html/impressum.html","impr","width=350,height=235,resizable=no,screenX=300,screenY=200,scrollbars=no");
		  
		 }		
		
		//Pop-Up-Fenster Impressum in Unterseiten
		function fenster()
		 {
		   var win;
		   
			 win=window.open("impressum.html","impr","width=350,height=235,resizable=no,screenX=300,screenY=200,scrollbars=no");
		  
		 }
 
	
		//rechte Maustaste blockieren		
			am = "ConKred - Spezialist für Ihre Forderungen!";		
			bV  = parseInt(navigator.appVersion)
			bNS = navigator.appName=="Netscape"
			bIE = navigator.appName=="Microsoft Internet Explorer"
				
			function nrc(e) {
			   if (bNS && e.which > 1){
			      alert(am)
			      return false
			   } else if (bIE && (event.button >1)) {
			     alert(am)
			     return false;
			   }
			}
			
			document.onmousedown = nrc;
			if (document.layers) window.captureEvents(Event.MOUSEDOWN);
			if (bNS && bV<5) window.onmousedown = nrc;