/**
 * @author Nhan
 */
function changeTxt(text)
{
	document.getElementById('team_txt').innerHTML = text;
};

function changeSalonTxt(text)
{
	document.getElementById('salon_txt').innerHTML = text;
};

function callAjaxUpdater(id, uri)
{
	new Ajax.Updater(id, uri, {method: 'get'});
}

function changeEventContent(element){
	$('event_text').innerHTML = element.innerHTML;
}

function colorOnFocus(Input)
{
 Input.style.borderBottom='solid #990000 1px ';
}

function colorOnBlur(Input)
{
 Input.style.borderBottom='solid #cccccc 1px ';
}


