function update(URL1,F1,URL2,F2,URL3,F3) {  
	parent.frames[F1].location.href=URL1;
	parent.frames[F2].location.href=URL2;
	parent.frames[F3].location.href=URL3;
}


function update1(URL1,F1,URL2,F2) {  
	parent.frames[F1].location.href=URL1;
	parent.frames[F2].location.href=URL2;
}


function click() {
	if (event.button==2) {alert('Copyright by FF Espelkamp - LG Fabbenstedt !')}
}


function showpicture(path, picpath, name, width, height) {
	var aspect_ratio = height/width;
	if (width > screen.width) {
		var pic_height = Math.round((screen.width-75)*aspect_ratio);
		var pic_width = (screen.width-75);
	} else {
		var pic_height = height;
		var pic_width = width;
	}
	if (screen.height < pic_height) {
		var pic_width = Math.round((screen.height-75)*(1/aspect_ratio));
		var pic_height = (screen.height-75);
	}
	window.open(path + "includes/fab_showpic.php?name=../" + picpath + "/bilder/" + name + "&width=" + pic_width + "&height=" + pic_height ,"picpopup","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,left=0,top=0,width=" + pic_width + ",height=" + pic_height);
}





if (screen.width < 800 || screen.height < 600) {
	alert("Diese Internetseite wurde für eine Auflösung ab 800 x 600 Bildpunkten optimiert.");
}

document.onmousedown=click

