if (self != top) top.location.href = self.location.href;
	
function stoperror() {
	return true
}
window.onerror=stoperror

var timerONE
var timerTWO
var defStatus = ''
	
function StatusFade(newstat) {
	clearTimeout(timerONE)
	clearTimeout(timerTWO)
 
	if(newstat != defStatus) {
		var cmd1 = 'StatusFade("' + defStatus + '")'
		timerONE = window.setTimeout(cmd1,2000)
	}
	scrllStatus(newstat,newstat.length)
}

function scrllStatus(scrllStat,i) {
    if(i >= 0) {
		if (i >= 2) i = i - 2
		else --i

		window.status = scrllStat.substring(i,scrllStat.length)
		cmd2='scrllStatus("'+ scrllStat +'",'+ i +')'
		timerTWO = window.setTimeout(cmd2,10)
	}
}

