function NewWindow_image(n) {

NewWin =  window.open("image.html","image",'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=500,height=370');    

         
}
// Change Image Function

/*
function changeImage(objekt,e){	

		source = objekt.src;
		position = source.length-5; // 5 = l.gif

			if(e.type == 'mouseover'){
				(objekt.src.indexOf("_c.gif") == -1)? objekt.src = (source.slice(0,position)).concat('h.gif') : nope = "";
			}

			if(e.type == 'mouseout'){
				(objekt.src.indexOf("_c.gif") == -1)? objekt.src = (source.slice(0,position)).concat('l.gif') : nope = "";
			}
			
			if(e.type == 'click'){
				for(i = 0; i < (document.images.length); i++){
					(document.images[i].src.indexOf(".gif") != -1)?	document.images[i].src = (document.images[i].src.slice(0,position)).concat('l.gif'): nope = "";
				}
				objekt.src = (source.slice(0,position)).concat('c.gif');
			}
			
}
// END Change Image Function
*/
	var store;
function changeImage(objekt,e){	
		source = objekt.src;
		position = source.length-5; // 5 = l.gif
		
		if(source != store){
			if(e.type == 'mouseover' && store != objekt.src){
				objekt.src = (source.slice(0,position)).concat('h.gif');
			}

			if(e.type == 'mouseout' && store != objekt.src){
				objekt.src = (source.slice(0,position)).concat('l.gif');
			}
				
			if(e.type == 'click'){
				for (i = 0; i <(document.images.length) ; i++){
					if(document.images[i].src.indexOf("b_") != -1){
						document.images[i].src = (document.images[i].src.slice(0,document.images[i].src.length-5)).concat('l.gif');
					}
				}	
			
				objekt.src = (source.slice(0,position)).concat('h.gif');	
				store = objekt.src;
			}		
		}//end if source!=store	
}// end function

function changeLinkBG(objekt,e){
	// Aufruf
	// onmouseover="javascript:changeLinkBG(this,event);"
	(e.type == "mouseout")?objekt.parentNode.parentNode.style.backgroundColor = '#000000' : objekt.parentNode.parentNode.style.backgroundColor = '#ffffff';
}



