/* ========================================================================
		Affiche la barre de status dans le bas de la page
		
		Auteur : Jean-François Blais
		Date de création : 13 décembre 2010

		------------------------------------------------------------------*/
//
//	DISPLAY FUNCTION
//
function ShowStatusBar()
{
	jQuery('<div/>', {id: 'BottomBar'}).appendTo('body');
	jQuery('<div/>', {id: 'BottomBarResult'}).appendTo('body');
	jQuery('<div/>', {class: 'content'}).appendTo('#BottomBar');
	jQuery('<div/>', {class: 'lblabs'}).appendTo('#BottomBar .content');	
	jQuery('<div/>', {class: 'buttons'}).appendTo('#BottomBar .content');
	jQuery('<div/>', {class: 'absences'}).appendTo('#BottomBar .buttons');
	$("#BottomBar .absences").click(get_teachers);
	$("#BottomBar .lblabs").html("absences");
	jQuery('<img/>', {src: _imagePath + "bb_absences.png"}).appendTo('#BottomBar .absences');
	jQuery('<div/>', {class: 'separator'}).appendTo('#BottomBar .buttons');
	jQuery('<div/>', {class: 'messages'}).appendTo('#BottomBar .buttons');
	$("#BottomBar .messages").click(get_messages);
	jQuery('<img/>', {src: _imagePath + "bb_messages.png"}).appendTo('#BottomBar .messages');
	jQuery('<div/>', {class: 'lblmes'}).appendTo('#BottomBar .content');
	$("#BottomBar .lblmes").html("messages");	
}

function get_teachers(){	window.open("https://apps1.cstj.qc.ca/absence/ListeAvis.aspx");}
function get_messages(){	window.location = "index.php?s=Message&a=showall";}


window.onload = ShowStatusBar;
