<!--
/*
 Java Script Calendar is a small script for web pages which displays current Day of the week, Month, Date and Year along with Holidays notification. Just like this working demo below. It will work with Netscape 2++, Microsoft 3++ and Opera 3++ web browsers.

                                    Tuesday, November 24, 1998    

About 70 holidays from all over the world are displayed by Calendar (if you know other ones, let me know, I will add them). It even calculates Easter Sunday date! To see how it works change the date on your computer to January, 1,
for example and re-load the page.

Installation is very simple. Just copy the script below, everything between SCRIPT and SCRIPT tags (including tags themselves) and paste in the place you want it to appear on your page. You can customize the way
 it looks by changing document.write function arguments just after month names definitions. Java Script Calendar is free without any limitations. Copyright © Eugene Vassiltsov. But please, let me know if you will use it.
*/

 calendar = new Date();
 day = calendar.getDay();
 month = calendar.getMonth();
 date = calendar.getDate();
 year = calendar.getYear();
 if (year < 1000)
 year+=1900
 cent = parseInt(year/100);
 g = year % 19;
 k = parseInt((cent - 17)/25);
 i = (cent - parseInt(cent/4) - parseInt((cent - k)/3) + 19*g + 15) % 30;
 i = i - parseInt(i/28)*(1 - parseInt(i/28)*parseInt(29/(i+1))*parseInt((21-g)/11));
 j = (year + parseInt(year/4) + i + 2 - cent + parseInt(cent/4)) % 7;
 l = i - j;
 emonth = 3 + parseInt((l + 40)/44);
 edate = l + 28 - 31*parseInt((emonth/4));
 emonth--;
 var dayname = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
 var monthname = 
 new Array ("January","February","March","April","May","June","July","August","September","October","November","December" );
 document.write("<font face=Verdana size=1>");
 document.write(dayname[day] + ",");
 if (date< 10) document.write("0" + date + " ");
         else document.write(date + " ");
 document.write(monthname[month] + " ");
 
 document.write(year +"    &nbsp;&nbsp;&nbsp;<b><font color=#FFE495>");
 // Easter
 if ((month == emonth) && (date == edate)) document.write("");
 // January
 if ((month == 0) && (date == 1)) document.write("New yearand celebrate:Vasilis & Vasiliki");
 if ((month == 0) && (date == 6)) document.write("and celebrate:Theofanis, iordanis & Photini");
 if ((month == 0) && (date == 7)) document.write("and celebrate:Ioannis prodromaos");
 if ((month == 0) && (date == 11)) document.write("and celebrate:Θεοδόσιος");
 if ((month == 0) && (date == 12)) document.write("and celebrate:Τατιανή");
 if ((month == 0) && (date == 17)) document.write("and celebrate:Αντώνης και η Αντωνία");
 if ((month == 0) && (date == 18)) document.write("and celebrate:Αθανάσιος"); 
 if ((month == 0) && (date == 20)) document.write("and celebrate:Ευθύμιος");
 if ((month == 0) && (date == 21)) document.write("and celebrate:Αγνή Μαξιμος Νεόφυτος");
 if ((month == 0) && (date == 22)) document.write("and celebrate:Αναστάσιος Τιμόθεος");
  if ((month == 0) && (date == 23)) document.write("and celebrateι:Αγαθάγγγελος");
 if ((month == 0) && (date == 24)) document.write("and celebrate:Ξένη");
 if ((month == 0) && (date == 25)) document.write("and celebrate:Γρηγόριος");
 if ((month == 0) && (date == 26)) document.write("and celebrate:Ξενοφών");
 if ((month == 0) && (day == 30)) document.write("Τριών Ιεραρχών Σχολική Εορτή"); 
if ((month == 0) && (date == 31)) document.write("and celebrate:Ευδοξία");
 // February
 if ((month == 1) && (date == 1)) document.write("and celebrate:Τρύφων");
 if ((month == 1) && (date == 2)) document.write("and celebrate:Υπαπαντή");
 if ((month == 1) && (date == 4)) document.write("and celebrate:Ισίδωρος");
 if ((month == 1) && (date == 5)) document.write("and celebrate:Αγαθή");
 if ((month == 1) && (date == 7)) document.write("and celebrate:Παρθένιος");
 if ((month == 1) && (date== 10)) document.write("and celebrate:Χαράλαμπος, Χαρίκλεια");
 if ((month == 1) && (date == 11)) document.write("and celebrate:Θεοδώρα, Βλάσιος");
 if ((month == 1) && (date== 12)) document.write("and celebrate:Μελέτιος");
 if ((month == 1) && (date== 17)) document.write("and celebrate:Θεόδωρος");
 if ((month == 1) && (date== 18)) document.write("and celebrateι:Λέων");
 if ((month == 1) && (date== 19)) document.write("and celebrate:Φιλοθέη");
  if ((month == 1) && (date == 23)) document.write("and celebrate:Πολύκαρπος");
 if ((month == 1) && (date == 27)) document.write("and celebrate:Ασκληπιός");
 // March
 if ((month == 2) && (date == 1)) document.write("and celebrate:Ευδοκία");
  if ((month == 2) && (date == 3)) document.write("and celebrate:Ευθαλία");
   if ((month == 2) && (date == 7)) document.write("and celebrate:Ευγένιος");
    if ((month == 2) && (date == 8)) document.write("and celebrate:Ερμής");
     if ((month == 2) && (date == 9)) document.write("and celebrate:Σμαράγδας");
 if ((month == 2) && (date == 17)) document.write("and celebrate:Αλέξιος");
 if ((month == 2) && (date == 19)) document.write("and celebrate:Χρύσανθος,Θεόδωρος");
 if ((month == 2) && (date == 25)) document.write("and celebrate:Εθνική Εορτή Ευαγγελισμός Θεοτόκου");
  if ((month == 2) && (date == 26)) document.write("and celebrate:Γαβριήλ");
  if ((month == 2) && (date == 28)) document.write("and celebrate:Ιλαρίων");
   // April
  if ((month == 3) && (date == 6)) document.write("and celebrate:Ευτύχιος");
 if ((month == 3) && (date == 10)) document.write("and celebrate:Δήμος");
 if ((month == 3) && (date == 10)) document.write("and celebrate:Επαμεινώντας");
 if ((month == 3) && (date == 16)) document.write("and celebrate:Γαλήνη ");
 if ((month == 3) && (date == 22)) document.write("and celebrate:Ναθαναήλ");
 if ((month == 3) && (date == 23)) document.write("and celebrate:Λάζαρος");
 if ((month == 3) && (date == 24)) document.write("and celebrate:Βαϊα,Αχιλλέας Βαλεντίνη");
 if ((month == 3) && (date == 25)) document.write("and celebrate Νίκη");
 if ((month == 3) && (date == 29)) document.write("and celebrate Ιάσων");
 if ((month == 3) && (date == 30)) document.write("and celebrate Θωμάς");
 if ((month == 3) && (day == 0) && (date > 0) && (date< 8)) document.write("");
 // May
 if ((month == 4) && (date == 1)) document.write("and celebrateΑναστασία,Αναστάσιος,Λάμπρος");
 if ((month == 4) && (date == 2)) document.write("and celebrate Γεώργιος,Ραφαήλ");
 if ((month == 4) && (date == 3)) document.write("and celebrate Μαρκος");
 if ((month == 4) && (date == 4)) document.write("and celebrate Πελαγία");
 if ((month == 4) && (date == 5)) document.write("and celebrate Ειρήνη");
 if ((month == 4) && (date == 6)) document.write("and celebrate Ζωή,Πηγή");
 if ((month == 4) && (date == 8)) document.write("and celebrate Θωμάς,Ησαϊας,Αρσένιος");
 if ((month == 4) && (date == 9)) document.write("and celebrate Ησαϊας,Χριστόφορος");
 if ((month == 4) && (date == 10)) document.write("and celebrate Σιμεών");
 if ((month == 4) && (date == 13)) document.write("and celebrate Γλυκερία,Σέργιος");
 if ((month == 4) && (date == 15)) document.write("and celebrate Μαγδαληνή");
 if ((month == 4) && (date ==17)) document.write("and celebrate Ανδρόνικος,Ιουνία");
 if ((month == 4) && (date == 18)) document.write("and celebrate: Ιουλία");
 if ((month == 4) && (date == 19)) document.write("and celebrate Λυδία"); 
 if ((month == 4) && (date == 21)) document.write("and celebrate Ελένη,Κωνσταντίνος");
 if ((month == 4) && (date == 29)) document.write("and celebrate Θεοδοσία,Φωτεινή");
 
 // June
 if ((month == 5) && (date == 5)) document.write("and celebrate Απόλλων");
 if ((month == 5) && (date == 6)) document.write("");
 if ((month == 5) && (date == 11)) document.write("and celebrate Βαρθολομαίος)");
 if ((month == 5) && (date == 15)) document.write("and celebrate Αυγουστίνος");
 if ((month == 5) && (date == 21)) document.write("");
 if((month == 5) && (date == 24)) document.write("");
 if ((month == 5) && (date == 30)) document.write("and celebrate Απόστολος");
 if ((month == 5) && (day == 0) && (date > 15) && (date< 24)) document.write("");
 // July
 if ((month == 6) && (date == 1)) document.write("and celebrate Ανάργυρος Αργύριος");
 if ((month == 6) && (date == 12)) document.write("and celebrate Βερονίκη");
 if ((month == 6) && (date == 14)) document.write("and celebrate Ακύλας");
 if ((month == 6) && (date == 18)) document.write("and celebrate Αιμιλιανός");
 if ((month == 6) && (date == 30)) document.write("and celebrate Ανδρόνικος");
 // August
 if ((month == 7) && (date == 1)) document.write("");
 if ((month == 7) && (date == 10)) document.write("");
 if ((month == 7) && (date == 15)) document.write("Κοίμησις Θεοτόκου");
 if ((month == 7) && (date == 26)) document.write("and celebrate Αδριανός");
 if ((month == 7) && (date == 30)) document.write("and celebrate Αλέξανδρος");
 // September
 if ((month == 8) && (date == 1)) document.write("and celebrate Αντιγόνη Ασπασία");
 if ((month == 8) && (date == 3)) document.write("and celebrate Ανθιμος");
 if ((month == 8) && (date == 13)) document.write("and celebrate Αριστείδης");
 if ((month == 8) && (date == 17)) document.write("and celebrate Αγάπη");
 if ((month == 8) && (date == 18)) document.write("and celebrate Αριάδνη");
 if ((month == 8) && (day== 1)&& (date > 0) && (date< 8)) document.write("");
 // October
 if ((month == 9) && (date == 1)) document.write("");
 if ((month == 9) && (date == 7)) document.write("and celebrate Σέργιος");
 if ((month == 9) && (day == 1) && (date > 7) && (date< 16)) document.write("");
 if ((month == 9) && (day == 0) && (date > 24) && (date< 31)) document.write("");
 if ((month == 9) && (day == 0) && (date == 31)) document.write("");
 if ((month == 9) && (date == 20)) document.write("και γιορτάζει ο Αρτέμιος");
 if ((month == 9) && (date == 28)) document.write("Εθνική Εορτή");
 if ((month == 9) && (date == 31)) document.write("Halloween");
 // November
 if ((month == 10) && (date == 1)) document.write("and celebrate Ανάργυρος και ο Αργύριος");
 if ((month == 10) && (date == 2)) document.write("");
 if ((month == 10) && (date == 3)) document.write("");
 if ((month == 10) && (date == 8)) document.write("and celebrate:Mιχαήλ Γαβριήλ Άγγελος Σταμάτης");
 if ((month == 10) && (date == 9)) document.write("and celebrate: Nektarios & Nektaria");

 if ((month == 10) && (date == 11)) document.write("and celebrate Minas");
 if ((month == 10) && (date ==20)) document.write("and celebrate Grogoris");
 if ((month == 10) && (date == 21)) document.write("Εισόδια της Θεοτόκου");

 if ((month == 10) && (date == 25)) document.write("and celebrate Katerina");
 if ((month == 10) && (date == 26)) document.write("and celebrate Στέλιος και η Στέλλα");
 if ((month == 10) && (date == 27)) document.write("and celebrate Ιάκωβος");
 if ((month == 10) && (date == 30)) document.write("and celebrate Ανδρέας και η Ανδριανή");
 if ((month == 10) && (day == 4) && (date > 23) && (date< 30)) document.write("");
 if ((month == 10) && (date == 30) && (day == 4)) document.write("");
 // December
 if ((month == 11) && (date == 4)) document.write("and celebrate Βαρβάρα");
 if ((month == 11) && (date == 5)) document.write("and celebrate Savvas");
 if ((month == 11) && (date == 6)) document.write("and celebrate Nick and Nikoletta");

 if ((month == 11) && (date == 9)) document.write("and celebrate Anna");
 if ((month == 10) && (date == 12)) document.write("");

 if ((month == 11) && (date == 15)) document.write("and celebrate Anthi");
 if ((month == 11) && (date == 22)) document.write("and celebrate Anastasia");
 if ((month == 11) && (date == 24)) document.write("Eve of Christmas");
 if ((month == 11) && (date == 25)) document.write("Christmas");
 if ((month == 11) && (date == 26)) document.write("Σύναξη θεοτόκου");
 if ((month == 11) && (date == 31)) document.write("Eve of new year");
 document.write("<br></font>");
//-->
