
function PopupFenster(datei, height, width) {
	F = window.open(datei,"Popup","width="+width+",height="+height+",resizable=yes,scrollbars=no");
	setTimeout("F.focus();", 100);
}

// MooTools Scrolling Bibletexts
/*
window.addEvent('domready', function(){
	var scroll = new Fx.Scroll('bibletext', {
	    wait: false,
		duration: 2500,
		offset: {'x': 0, 'y': 0},
		transition: Fx.Transitions.Quad.easeInOut
	});

	$('link_429').addEvent('click', function(event) {
		event = new Event(event).stop();
		scroll.toElement('bible_430');
	});

	$('link_430').addEvent('click', function(event) {
		event = new Event(event).stop();
		scroll.toElement('bible_429');
	});
	

});
*/

// MooTicker for Bibletexts
window.addEvent('domready', function() {
 var myTicker = new Ticker('bibletext-inner',{toggleButton:'toggle_bibleticker',interval:6000});
});

