function setState(str,timed){
	if(typeof tntStatus != "undefined"){
		tntStatus.innerHTML = str;
		return;
		}
	if(top.frames["statusBar"] && top.frames["statusBar"].document) { 
		if(str == "")str="&nbsp;";
			var st = top.frames["statusBar"].document.getElementById("myStatus");
			if(st){ st.innerHTML=str; }
			}
	else {
	 	if(window.document.getElementById("myStatus")) {
			tntStatus = document.getElementById("myStatus");
			}
		if(typeof tntStatus!= "undefined" ){
			tntStatus.innerHTML = str;
			}
		else {
			if(window.status) window.status = str;
			}
		}
	setTimeout("setState('&nbsp;');",5000);
	}
