function formatDate(date) {
	var day = date.getDate();
	var month = date.getMonth()+1
	var year = date.getFullYear();
	
	if(day<10) day = '0' + day;
	if(month<10) month = '0' + month;
	
	return day + "/" + month + "/" + year;
}

function infobar(text, delay){
	var anim=true, ib=document.getElementById('infobar');	
	ib.innerHTML=text; 
	delay=!delay?5:delay;
	setTimeout(function(){ if (anim==true) Ext.get('infobar').slideIn('t',{ useDisplay:true }); else ib.style.display=''; }, 500);
	setTimeout(function(){ if (anim==true) Ext.get('infobar').slideOut('t',{ useDisplay:true }); else ib.style.display='none'; }, delay*1000);
}

function infobarClose(){ document.getElementById('infobar').style.display='none'; }
