	function ShowPic(pid) {
		document.getElementById('gall_ware').style.display = 'none';
		
		XY = getPageSizeWithScroll();
		View = document.getElementById('GallView');
		
		document.getElementById('GallPic').src = '/img/loading_img.gif'; 
		
		PicId = pid;
		
		View.style.left = (((XY[0]-65)/2)) + 'px'
		
		pic = new Image;
		pic.src = dir + files[pid];
		
		checkLoad();
	}
	function NextImg() {
		document.getElementById('gall_ware').style.display = 'none';
		document.getElementById('GallPic').src = '/img/loading_img.gif'; 
		
		View.style.left = (((XY[0]-65)/2)) + 'px'
		
		pic = new Image;
		PicId += 1;
		if (PicId >= PicsTotal) { PicId = 0; }
		if (hideInfo == true) { 
			document.getElementById('download_info').style.display = 'none'; 
		}
		pic.src = dir + files[PicId];
		checkLoad();
	}
	function LastImg() {
		document.getElementById('gall_ware').style.display = 'none';
		document.getElementById('GallPic').src = '/img/loading_img.gif'; 
		
		View.style.left = (((XY[0]-65)/2)) + 'px'
		
		pic = new Image;
		PicId -= 1;
		if (PicId < 0) { PicId = (PicsTotal-1); }
		if (hideInfo == true) { 
			document.getElementById('download_info').style.display = 'none'; 
		}
		pic.src = dir + files[PicId];
		checkLoad();
	}
	function checkLoad() {
		window.location.href = '#';
		if (pic.complete) { 
			document.getElementById('GallPic').src = pic.src; 
			fadR('GallView',0,10);
			View.style.left = (((XY[0]-(pic.width+10))/2)) + 'px'
			document.getElementById('gall_ware').style.display = 'inline';
			if (hideInfo == true) { 
				document.getElementById('download_info').style.display = 'inline';
				document.getElementById('download_01').href = '/bilderbox/?download='+Ids[PicId];
				document.getElementById('download_02').href = '/bilderbox/?download='+Ids[PicId]+'#form';
			}
			
			if (diashow == true) { setTimeout("NextDiaImg();",5000); }
			
		}
		else { setTimeout('checkLoad();',100); }
	}
	diashow = false;
	function startDiashow() {
		diashow = true;
		document.getElementById('Dia').src = 'http://imgsrv.foto-kerschi.at/diashow_stop.gif';
		setTimeout("NextImg();",1000);
	}
	function turnOffDiashow() {
		diashow = false;
		document.getElementById('Dia').src = 'http://imgsrv.foto-kerschi.at/diashow.gif';
	}
	function NextDiaImg() {
		if (diashow == true) { NextImg(); }	
	}
	function checkDiashow() {
		if (diashow == true) { turnOffDiashow(); }
		else if (diashow == false) { startDiashow(); }
	}
	function press(e) {
		if (!e) { e = window.event; }
		var key = e.keyCode || e.which;
		
		if (key == 37) { LastImg(); }
		else if (key == 39) { NextImg(); }
		
	}
	document.onkeyup = press;
