function tbadge(account, design, color, side, top){	top = parseInt(top);		box_style='position:fixed; bottom:'+top+'px; z-index:6000; cursor:pointer; '+side+': 0px;';	label_style='position:fixed; z-index:7000; cursor:pointer; '+side+': 0px;';	var designs = new Array();		designs['left'] = new Array(		'<div id="tbadge_box" style="'+box_style+' color: '+color+'; width:103px; height:103px;  background: url(http://museum-neu.jp/followus_off.png) no-repeat;"></div><div id="tbadge_label" style="'+label_style+' bottom:'+(top+0)+'px; width: 103px; height: 103px; background: url(http://museum-neu.jp/followus_on.png) no-repeat;">&nbsp;</div>'			);		designs['right'] = new Array(		'<div id="tbadge_box" style="'+box_style+' color: '+color+'; width:29px; height:190px;  background: '+color+' url(http://museum-neu.jp/followus_off.png) no-repeat;"></div><div id="tbadge_label" style="'+label_style+' bottom:'+(top+0)+'px; width: 103px; height: 103px; background: url(http://museum-neu.jp/followus_on.png) no-repeat;">&nbsp;</div>'			);		if(document.getElementById('tbadge'))		document.body.removeChild(document.getElementById('tbadge'));	init = document.createElement('div');	init.setAttribute('id','tbadge');	document.body.appendChild(init);		init.innerHTML = designs[side][design-1] + '<style>#tbadge_label{visibility:hidden;} #tbadge:hover #tbadge_label{visibility:visible;}</style>';		document.getElementById('tbadge_box').onclick=function(){		window.open('http://twitter.com/'+account);	}	document.getElementById('tbadge_label').onclick=function(){		window.open('http://twitter.com/museum_neu');	}}
