function searchTag(form) {
	var tag = document.getElementById('search-tag').value;
	if (!(tag == '' || tag == 'Search for tag...')) {
		window.location.href = '/tag/' + encodeURIComponent(tag);
	}
	return false;
}

