function changeColor(id, color) {
	element = document.getElementById(id);
	event.cancelBubble = true;
	oldColor = element.currentStyle.background;
	element.style.background = color;
}

function confirmSomething( mess , url ) {
	if (confirm(mess))
	window.location.href = url;
}

function backToSomething( url ) {
	window.location.href = url;
}

function ms_jointeam(url,la) {
 var selectopt = document.getElementById('aTeam');
 var formatedurl = url+'member/acc/join_team/'+selectopt[selectopt.selectedIndex].value+'/'+la+'/';
 window.location.href = formatedurl;
}	
