// Created By Tim Wintle (evymetal@yahoo.com) 30/3/99
//this script will print into the document the text desired.
//This Version 27/6/99

var tempdate= new Date()
	var month=tempdate.getMonth()
	var day=tempdate.getDate()
	var year=tempdate.getYear
	var msg

		//-----January-----
	if (month==0){
		if (day<4){
		msg = "Happy new year"
		}
		if (day>3){
		msg = "Welcome to Total"
		}
	}

		//-----February-----
	if (month==1){
		if (day<14){
		msg = "Send a free e-card at <a href='http://www.amazon.com/exec/obidos/redirect-home/total0a'><font color='red'>Amazon.com</font></a>"
		}
		if (day>13){
		msg = "Did you get a card on Valentine's day?"
		}
	}

		//-----March-----
	if (month==2){
		if (day>25){
		msg = "Easter is coming!"
		}
		else{
		msg = "Have you got the fynne screensaver?"
		}
	} 

		//-----April-----
	if (month==3){
		if (day==1){
		msg = "Do you know an April fool?"
		}
		else{
		if (day<26){
		msg="Don't forget to buy some Easter eggs soon"
		}
		msg="We want to hear form you - Feedback."
		}
	}

		//----- May -----	
	if (month==4){
		msg = "How happy is fynne?"
	}

		//----- June -----
	if (month==5){
		if (day<16){
		msg = "Is your fynne still happy?"
		}
		if (day>15){
		msg = "have you given fynne a present?"
		}
	}

	//----- July -----
	if (month==6){
		msg = "Cool down with your virtual fish"
	}
	
		//----- August -----
	if (month==7){
		msg = "Have you seen our the rest of the site?"
	}

	//----- September -----
	if (month==8){
		msg = "Check for new add-ons"
	}

	//----- October -----
	if (month==9){
		if (day !=31){
		msg = "Seen any scary Halloween sites?"
		}
		else {
		msg = "Have a wacky Halloween."
		}
	}

	//----- November -----
	if (month==10){
		if (day<6){
		msg = "Have a great Bonfire Night"
		}
		if (day>5){
		msg = "Found any good Bonfire Sites?"
		}
	}

	//----- December -----
	if (month==11){

		if (day<25){
		msg= " Only a few days to go until Christmas!"
		}

		if (day==25){
		msg = "Merry Christmas!"
		}
		
		if (day>25){
		msg = "It's that resolution time"
		}
	}
window.document.writeln("<font color='white'>" + msg + "</font>")