function go(url){
	window.location=url;
}

function ml(more,id){
	var e = document.getElementById('expand-'+id);
	if(more){
		Effect.BlindDown('more-'+id);
		e.href = "javascript:ml(false,"+id+");";
		e.innerHTML = '<div class="up">&nbsp;</div> less'
	} else {
		Effect.Fade('more-'+id);
		e.href = "javascript:ml(true,"+id+");";
		e.innerHTML = '<div class="down">&nbsp;</div> more'		
	}
}

function tc(tag){
	window.location = '#'+tag;
	new Ajax.Updater('tagdump', '/skillset/'+tag, { method: 'get' });
}
