myDate  = new Date();
myYear  = myDate.getFullYear();
myMonth = myDate.getMonth() + 1;
if (myMonth < 10){
	myMonth = '0' + myMonth;
}
myYearNews = '0' + (myYear - 2000);
document.write('<dl><dt>News & Auction Schedule</dt>');
document.write('<dd>&#8226 <a href="news/JEN_E_Industry_' + myYearNews + myMonth + '.html">Industry News</a></dd>');
document.write('<dd>&#8226 <a href="news/JEN_E_Product_' + myYearNews + myMonth + '.html">Product News</a></dd>');
document.write('<dd>&#8226 <a href="sche/JEN_E' + myYear + myMonth + '.html">Auction Schedule</a></dd></dl>');