MONTH NUMBER to TEXT
The script turn the month number into text:
<script type="text/javascript">
var mn = "[actual_date0_month_local]";
if (mn==01)
{
document.write("January");
}
else if (mn==02)
{
document.write("February");
}
else if (mn==03)
{
document.write("March");
}
else if (mn==04)
{
document.write("April");
}
else if (mn==05)
{
document.write("May");
}
else if (mn==06)
{
document.write("June");
}
else if (mn==07)
{
document.write("July");
}
else if (mn==08)
{
document.write("August");
}
else if (mn==09)
{
document.write("September");
}
else if (mn==10)
{
document.write("October");
}
else if (mn==11)
{
document.write("November");
}
else if (mn==12)
{
document.write("December");
}
</script>
