function zwinkern (intCount) {

	if (intCount == 999) {
		
		// Initialisieren
		
		husar = new Array(2);
		
		husar[0] = new Image();
		husar[0].src = "_img/logo_kopf.gif";
		
		husar[1] = new Image();
		husar[1].src = "_img/logo_kopf_anim.gif";

		intCount = 5;
		
	}

	if (intCount < 0 ) {
		return "end";
	}
	
	if ((intCount % 2) == 0) {
		document.images.img1.src = husar[0].src;
		intTimeOut = 2000;
	} else {
		document.images.img1.src = husar[1].src;
		intTimeOut = 120;

	}
		
	intCount = intCount - 1;

	setTimeout("zwinkern(" + intCount + ")", intTimeOut);	
	
}

function showPicture(url) {

	newwindow=open("showpicture.shtml?" + url,"showpicture","menubar=yes,resizable=yes,scrollbars=yes,width=520,height=320")	 

}