
var count = 0;
var delay = 300; //250;
var sttext = "  * * *  Check for updates:  more Debates about the new-orientating books on the historical Moses and the secrets of Ancient Egypt  * * *  Check for updates:  Zenith files' new articles by Ove von Spaeth";

function  stscroll() {
	window.status = sttext.substring (count, sttext.length) + sttext.substring (0, count)
	if (count < sttext.length) {
		count ++;
	}else {
		count = 0;
	}
	setTimeout ("stscroll()", delay);
}


function startup() {	
	if (typeof trap 		== 'function')	{ trap(); }
	if (typeof movePict 		== 'function') 	{ movePict(); }
	if (typeof stscroll 		== 'function') 	{ stscroll(); }
	if (typeof preloadMostViewed 	== 'function')	{ preloadMostViewed(); }

	document.onselectstart 	=		new Function("return false");
	document.oncontextmenu 	= 		new Function("return false");
	document.ondragstart 	= 		new Function("return false");
}

window.onload=startup;