// JavaScript Document
function myDonate() {
	
	var myDate = new Date;
	
	myDate.setDate(25);	
	myDate.setMonth(11); // January = 0
	myDate.setFullYear(2009);
	var prexmas = "<iframe id='front_donate_now' name='front_donate_now' src='front_page/front_donate_now.html' frameborder='0' scrolling='no' align='top' height='225' width='172' marginwidth='0'></iframe>";
	
	var postxmas = "<iframe id='front_donate_now' name='front_donate_now' src='front_page/front_donate_now_postxmas.html' frameborder='0' scrolling='no' align='top' height='225' width='172' marginwidth='0'></iframe>";
	
	
	var today = new Date;
	
	//document.write(postxmas); 
	if (today <= myDate) {
		document.write(prexmas); 
		}
	if (today > myDate) {
		document.write(postxmas); 
		}

	
}
