// TopImage
//
// Insert an extra image at the top of each VongNation page, dependent on date range.

function topImage() {
	var today = new Date();
	
	var currDay = today.getUTCDate();
	var currMonth = today.getUTCMonth() + 1; // Add 1 as UTC months are 0-11

	if ((currDay >= 1 && currDay <= 20) && (currMonth == 11)) { // Display Poppy image and link from Nov 1 to Nov 20
		document.write('<a href="http://www.poppy.org.uk/donate" target="_blank" title="Visit Poppy.org.uk and donate"><img src="http://vongnation.co.uk/images/Poppy.png" alt="Poppy logo" /></a>');
	}
	else if ((currDay >= 15 && currMonth == 12) || (currDay <= 5 && currMonth == 1)) { // Display Christmas/New Year image from Dec 15 to Jan 5
		document.write('<img src="http://vongnation.co.uk/images/VN-Xmas.png" alt="Xmas logo" />');
	}
	else {
//		document.write(' ');
			document.write('<a href="http://ps3heroes.com" target="_blank" title="Click to visit PS3Heroes.com"><img src="http://vongnation.co.uk/images/PS3Heroes_logo.png" alt="PS3Heroes logo" /></a>');
	}
}
