function setStatus(str,timed){
	var stat = $('myStatus');
	if(str == "")str="&nbsp;";
	if(!stat)stat = $('state');
	if(!stat){
		if(top.frames["statusBar"] && top.frames["statusBar"].document) { 
			stat = top.frames["statusBar"].document.getElementById("myStatus");
			}
		}
	if(!stat && window.status){
		window.status = str;
		}
	if(stat){
		stat.innerHTML = str;
		}
	else {
	
		}
	if(!timed){
		timed = 6000;
		}
	setTimeout("setStatus('&nbsp;&nbsp;');",timed);
	}
