// JavaScript Document
str="Human Rights Party"
	i=0
	function show(){
		window.status=str.substring(0,i)
		if(i>str.length){
			window.setTimeout('show()',1000)
			i=0
		}
		else{
			i++
			window.setTimeout('show()',200)
		}
	}