<!-- Hide script from old browser
// Write Line
function WriteLine(theSite,PreText,LinkText,PostText)
{
document.write("<img src='img/o.gif' alt='-' width='20' height='19'>",PreText,"<a href='",theSite,"' target='_blank'>",LinkText,"</a>",PostText,"<br>");
}

// Write Line if current date is between theDay1/theMonth1 and theDay2/theMonth2
function IfDate(theDay1,theMonth1,theDay2,theMonth2,theSite,PreText,LinkText,PostText)
{
var nowDate = new Date();
if (   ( ((nowDate.getMonth()+1) > theMonth1) && ((nowDate.getMonth()+1) < theMonth2) )
    || ( ((nowDate.getMonth()+1) == theMonth1) && ((nowDate.getDate()+1) >= theDay1) )
    || ( ((nowDate.getMonth()+1) == theMonth2) && ((nowDate.getDate()+1) <= theDay2) ) )
	WriteLine(theSite,PreText,LinkText,PostText);
}

// Write Line if current month = theMonth
function IfMonth(theMonth,theSite,PreText,LinkText,PostText)
{
IfDate(0,theMonth,32,theMonth,theSite,PreText,LinkText,PostText);
}
// End the hiding here. -->