/* Image Resize */
function imageresize(bild_ID,maxBreite,maxHoehe) {
    Bild = document.getElementById(bild_ID);

	proportion = Bild.height / Bild.width;

    if (Bild.width > maxBreite) {
            Bild.width = maxBreite;
			Bild.height = Bild.width * proportion;
    }

	if (Bild.height > maxHoehe) {
            Bild.height = maxHoehe;
			Bild.width = Bild.height / proportion;
    }
}
//-->

