// Javascript Steuerung fŸr Quicktime
function zoomIn(anObj)
        {
        anObj.SetFieldOfView(anObj.GetFieldOfView() - 10);
		timeout = setTimeout("zoomIn()", 200 );
		}  
function zoomOut(anObj)
        {
        anObj.SetFieldOfView(anObj.GetFieldOfView() + 10);
		timeout = setTimeout("zoomIn()", 200 );
		}  




// nur fŸr Firefox Mac
// onresize = new Function('setTimeout("window.location.reload()",0)');


function oeffnefenster (url) {
 fenster = window.open(url, "fenster1", "status=no,scrollbars=yes,resizable=yes");
 fenster.focus();
}