function rot13(src){
	var dst=new String('');
	var len=src.length ;
	var b;
	var t=new String('');
	if(len > 0)	{
		for(var ctr=0; ctr<len ; ctr++)	{
			b=src.charCodeAt(ctr)
			if( ( (b>64) && (b<78) ) || ( (b>96) && (b<110) ) )
				 b=b+13;
			else if( ( (b>77) && (b<91) ) || ( (b>109) && (b<123) ) )
				b=b-13;
			t=String.fromCharCode(b) ;
			dst=dst.concat(t) ;
		}
	}
	return dst;
}
var a=rot13(unescape(_oln)).split('¬');
document.write('<div align="center" id="outlawname" style="width:150px;background-color:#222222;padding:5px;border:2px solid red;font:normal 10px sans-serif;color:#e0e0e0;">');
document.write('My Outlaw Biker Name is<br/><strong style="font-size:12px;color:orange;">');
document.write(a[1]+'</strong><br/> of the <br/><strong style="font-size:12px;color:orange;">'+a[0]);
document.write('</strong><br/><a target="_blank" href="http://ratbike.org/motorcycho/outlawname.php" style="color:white;">Get your Outlaw Biker Name</a>');
document.write('<br/>at <strong><a target="_blank" style="text-decoration:none;color:#e0e0e0;" href="http://ratbike.org/motorcycho"><em>Motor</em>Cycho</a></strong> Biker Zine!</div>');