function setMsg(msg, display_alert) {
	msg = ( msg || '&nbsp;' );
	
	if (display_alert && msg != '') { 
		if (cronometro) {
			if (!cronometro.isStoped) {
				cronometro.pause();
			}
		}
		alert(msg.stripTags());
		if (cronometro) {
			if ( cronometro.isPaused ) {
				cronometro.reStart();
			}
		}
	}
	if($('panelMsg')) {
		$('panelMsg').innerHTML = msg;
	}
}

function setTimeMsg(timerMsg) {
	timerMsg = ( timerMsg || '' );
	if($('panelMsg')) $('panelMsg').innerHTML = timerMsg;
}

function clearMsg() {
	if($('panelMsg')) $('panelMsg').innerHTML = "";
}