<!--  // Start script to handle Daily Word link
      // Changes the Daily Word image for each day of the week.
// Place Daily Word link according to day
function dwput()
{
	var intDay = new Date;		// Set new date variable
	var intDex = intDay.getDay()	// What day of the week is it?
	var intW = new Array(7);	// Array for image width
		intW[0] = 130;
		intW[1] = 125;
		intW[2] = 180;
		intW[3] = 150;
		intW[4] = 200;
		intW[5] = 200;
		intW[6] = 125;
	var intH = new Array(7);	// Array for image height
		intH[0] = 52;
		intH[1] = 50;
		intH[2] = 50;
		intH[3] = 50;
		intH[4] = 50;
		intH[5] = 50;
		intH[6] = 50;
	document.write("<a href='http://www.dailyword.com?t=DWVA012'><img src='http://www.dailyword.com/images/dw_affb" + (intDex + 2) + ".jpg' width='" + intW[intDex] + "' height='" + intH[intDex] + "' alt='Daily Word' /></a>");
}
// end script -->