function click(e) {
	if (navigator.appName == 'Netscape' && e.which == 3) {
		window.location = 'http://agilityfotos.ch/copyright.php';
		alert("copyright agilityfotos.ch!")
		return false;
	} else if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
		window.location = 'http://agilityfotos.ch/copyright.php';
		alert("copyright agilityfotos.ch!")
		return false;
	}
	return true;
}
document.onmousedown=click;
function ShowPicture(IdName) {
	var mydivs = document.getElementsByTagName('DIV');
	for (i = 0; i < mydivs.length; ++i) {
		mydivs[i].style.display='none';
	}
	document.getElementById(IdName).style.display='inline';
	if (document.layers) document.getElementById(IdName).style.top = document.body.scrollTop+50;
	else document.getElementById(IdName).style.top = document.body.scrollTop+50+'px';
}
function ShowDIV(IdName) {
	document.getElementById(IdName).style.display='inline';
	if (document.layers) document.getElementById(IdName).style.top = document.body.scrollTop+50;
	else document.getElementById(IdName).style.top = document.body.scrollTop+50+'px';
}
