window.defaultStatus='COMORES TELECOM | Societe Nationale des Telecommunications';

function getTime()
{       
	var now = new Date();

	var day = now.getDay();
	var date = now.getDate();
	var month = now.getMonth() +1;
	var year = now.getYear();
	var minutes = now.getMinutes();
	var divider = "h";
	var jour = "";
	var mois = "";

	if (year < 1900)
		year = year + 1900;

	if (minutes<10)
		divider = "h0";

	if (day == 0)
		jour = "Dimanche";
	if (day == 1)
		jour = "Lundi";
	if (day == 2)
		jour = "Mardi";
	if (day == 3)
		jour = "Mercredi";
	if (day == 4)
		jour = "Jeudi";
	if (day == 5)
		jour = "Vendredi";
	if (day == 6)
		jour = "Samedi";

	if (month == 1)
		mois = "Janvier";
	if (month == 2)
		mois = "Fevrier";
	if (month == 3)
		mois = "Mars";
	if (month == 4)
		mois = "Avril";
	if (month == 5)
		mois = "Mai";
	if (month == 6)
		mois = "Juin";
	if (month == 7)
		mois = "Juillet";
	if (month == 8)
		mois = "Aout";
	if (month == 9)
		mois = "Septembre";
	if (month == 10)
		mois = "Octobre";
	if (month == 11)
		mois = "Novembre";
	if (month == 12)
		mois = "Decembre";



	return( jour + "  " + date + " " + mois + " " + year + " - " + now.getHours() + divider + minutes  );
}