<!--
	function logo(){
		var str;
		var logo_name="スレッドサーチャーモナー";
		var i;
		var size;
		str="<TABLE height=80px><TR>";
		var iphone=0;
		if(navigator.userAgent.match(/iPhone.*Mobile.*Safari/)){
			iphone=1;
		}
		for(i=0;i<logo_name.length;i++){
			size=Math.random()*5;
			size=Math.floor(size);
			if(iphone){
				size=5;
			}
			str+="<TD><h"+size+"><A HREF=\"http://www.abars.biz/search/thread/\"style=\"text-decoration: none;\"><font color=\"#336699\">"+logo_name.charAt(i)+"</font></A></h"+size+"></TD>";
		}
		str+="</TR></TABLE>";
		document.getElementById("logo").innerHTML=str;
	}
-->