<!-- Begin
now = new Date();
month = now.getMonth();
month++;
var flowers = new Array();
var wmonths = new Array();
flowers[0]='Orchid'
wmonths[0]='January'
flowers[1]='Cyclamen'
wmonths[1]='February'
flowers[2]='Daffodil'
wmonths[2]='March'
flowers[3]='Tulip'
wmonths[3]='April'
flowers[4]='Iris'
wmonths[4]='May'
flowers[5]='Rose'
wmonths[5]='June'
flowers[6]='Pansy'
wmonths[6]='July'
flowers[7]='Hollyhock'
wmonths[7]='August'
flowers[8]='Coneflower'
wmonths[8]='September'
flowers[9]='Sunflower'
wmonths[9]='October'
flowers[10]='Anthurium'
wmonths[10]='November'
flowers[11]='Poinsettia'
wmonths[11]='December'
if (month<10){
document.writeln('<table border="0"><tr><td align="center"><font size="3"><b>' + wmonths[month-1] + ' - ' + flowers[month-1] + '</td></tr><tr><td align="center"><a href="javascript:mywindow(month)"><img border="0" src="images/gtd_50' + month + '.jpg"></A></font></b></td></tr></table>')
}
else {
document.writeln('<table border="0"><tr><td align="center"><font size="3"><b>' + wmonths[month-1] + ' - ' + flowers[month-1] + '</td></tr><tr><td align="center"><a href="javascript:mywindow(month)"><img border="0" src="images/gtd_5' + month + '.jpg"></A></font></b></td></tr></table>')
}
// End -->
