function login () {
	var password;
	var pass1="Mammut!";

	password=prompt('Please enter your password to view this page!',' ');

	if (password!=pass1) {
		alert('Password Incorrect!');
		window.location="http://www.mammut-dokumentenservice.com";
	}
}

function changePic (PicID, PicPath, PicName) {
	document.getElementById(PicID).src = "/img/"+PicPath+"/"+PicName;
}

