function displayCurrentDate() {
	var dayNames = new Array("Duminică","Luni","Marți","Miercuri","Joi","Vineri","Sâmbătă");
	var monNames = new Array("Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie");
	var now = new Date();
	var year= now.getYear() + 1900;
	document.write("<b><font size=\"2\" face=\"Verdana, Arial, Helvetica, sans-serif\" color=\"#FFFFFF\" >");
	document.write(dayNames[now.getDay()] + ",&nbsp;" + now.getDate() + "&nbsp;" + monNames[now.getMonth()] + "&nbsp;" + year);
	document.write("</font></b>");
}

function openCalendar() {
	var now = new Date();
	var day = now.getDate();
	var month = now.getMonth() + 1;
	var year = now.getYear() + 1900;
	var url = "http://www.calendarulortodox.ro/index.php?application=show_day&zi=" + day.toString() +  "&luna=" + month.toString() + "&anul=" + year.toString();
	var win = window.open(url);
}