function decode_mail(s) { //
	var n=0;
	var r="";
	for(var i=0; i < s.length; i++) {
		n=s.charCodeAt(i);
		if (n>=8364) {n = 128;}
		r += String.fromCharCode(n-(1));
	}
	return r;
}

// JS function for uncrypting spam-protected emails:
function go_decode_mail(s) { //
	location.href=decode_mail(s);
}





function setstat()
{
	status = 'Nuskoolbreaks.net'; 
	return true;
}
function stats(text)
{
	Window.status = text; 
	return true;
}
function set_o_colored(o){
	document.getElementById('L'+toplinkid+'_0').style.color = '#696969';
	document.getElementById('L'+o+'_0').style.color = '#F4A438';
}

function unset_o_colored(o){
	document.getElementById('L'+toplinkid+'_0').style.color = '#F4A438';
	document.getElementById('L'+o+'_0').style.color = '#696969';
}