<!--
var today = new Date()
var year = today.getFullYear()
var month = today.getMonth()
var day = today.getDate()
var m1 = "mastheads/masthead_"

//document.write ('<img src="mastheads/masthead_17.jpg" width="750" height="100">')	-- works
//document.write ('<img src="'+m1+day+'.jpg">')	-- works
document.write ('<img src="'+m1+day+'.jpg">')
//-->


