function Func_DynamicDaysLeft_Mehr() {
 
<!-- Begin
var date = new Date("October 6, 2009");
var description = "Mehrgan Festival";
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
document.write("<left>")
if (days > 1) {
document.write(days+1 + " days until " + description + " on " +  date);
}
else if (days == 1) {
document.write("Only two days until " + description);
}
else if (days == 0) {
document.write("Tomorrow is " + description);
}
else {
document.write("It's " + description + "!");
}

// End -->
 
}


function Func_DynamicDaysLeft_NewYear() {
 
<!-- Begin
var date = new Date("March 21, 2010");
var description = "New Year and Zarathtshtra's Birthday";
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
document.write("<left>")
if (days > 1) {
document.write(days+1 + " days until " + description + " on " +  date);
}
else if (days == 1) {
document.write("Only two days until " + description);
}
else if (days == 0) {
document.write("Tomorrow is " + description);
}
else {
document.write("It's a " + description + "!");
}

// End -->
 
}



function Func_DynamicDaysLeft_Sadeh() {
 
<!-- Begin
var date = new Date("January 26, 2010");
var description = " Sadeh, Festival of Light and Fire";
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
document.write("<left>")
if (days > 1) {
document.write(days+1 + " days until " + description + " on " +  date);
}
else if (days == 1) {
document.write("Only two days until " + description);
}
else if (days == 0) {
document.write("Tomorrow is " + description);
}
else {
document.write("It's" + description + "!");
}

// End -->
 
}


function Func_DynamicDaysLeft_Yalda() {

 
<!-- Begin
var date = new Date("December 17, 2009");
var description = "Yalda Festival";
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
document.write("<left>")
if (days > 1) {
document.write(days+1 + " days until " + description + " on " +  date);
}
else if (days == 1) {
document.write("Only two days until " + description);
}
else if (days == 0) {
document.write("Tomorrow is " + description);
}
else {
document.write("It's" + description + "!");
}

// End -->
 
}


function Func_DynamicDaysLeft_Tirgan() {
 
<!-- Begin
var date = new Date("June 30, 2010");
var description = "Tirgan Festival";
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
document.write("<left>")
if (days > 1) {
document.write(days+1 + " days until " + description + " on " +  date);
}
else if (days == 1) {
document.write("Only two days until " + description);
}
else if (days == 0) {
document.write("Tomorrow is " + description);
}
else {
document.write("It's" + description + "!");
}

// End -->
 
}


function Func_DynamicDaysLeft_GahanBar() {
 
<!-- Begin
var date = new Date("March 11, 2010");
var description = "Great Gahanbar (About 4000 Years Old Annual Persian Thanksgiving and Festival)";
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
document.write("<left>")
if (days > 1) {
document.write(days+1 + " days until " + description + " on " +  date);
}
else if (days == 1) {
document.write("Only two days until " + description);
}
else if (days == 0) {
document.write("Tomorrow is " + description);
}
else {
document.write("It's" + description + "!");
}

// End -->
 
}