<!--
month_name = [ 'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec' ];
dow_name   = [ 'sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat' ];
d = new Date;
d.setTime(d.getTime() + (d.getTimezoneOffset() + 540) * 60 * 1000) 
year  = d.getYear();

if ( year < 2000 ) { year += 1900; }
year  = year + '';
month = d.getMonth();
day   = d.getDate() + '';
dow   = d.getDay();

for ( i = 0; i < day.length; i++ ) {
	document.write( day.charAt(i) );
}
	document.write( '<img src="/auction/images/date/space.gif" width="3" height="10">' );
	document.write( month_name[month].substring(0, 1).toUpperCase() + month_name[month].substring(1) );
	document.write( '<img src="/auction/images/date/space.gif" width="3" height="10">' );

for ( i = 0; i < year.length; i++ ) {
 	document.write( year.charAt(i) );
}
	document.write( '<img src="/auction/images/date/space.gif" width="3" height="10">' );
	document.write( dow_name[dow].substring(0, 1).toUpperCase() + dow_name[dow].substring(1) );
	document.write( '<img src="/auction/images/date/dot.gif" width="2" height="9">' );

// -->