// JavaScript Document
function popup(link,breite,hoehe) {
    LeftPosition = (screen.width) ? (screen.width-breite)/2 : 0;
    TopPosition = (screen.height) ? (screen.height-hoehe)/2 : 0;
    popup = window.open(link,"popup",'width='+breite+',height='+hoehe+',top='+TopPosition+',left='+LeftPosition+',directories=0,fullscreen=0,toolbar=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0,');
    setTimeout('popup.focus();',200);
}
function change(bild1,bild2){
	document.images[bild1].src=bild2;
}
-->
