var this_date_timestamp=new Date()	//get current day-time stamp

var this_year = this_date_timestamp.getYear()	//extract year

if (this_year < 1000)
	this_year+= 1900;	//fix Y2K problem
if (this_year==101)
	this_year=2001;		//fix Netscape browsers - it displays the year as being the year 101!

var this_date_string = this_year

function StopSpam(recip,domain){
	var mail = "mailto:" + recip + "@" + domain;
	window.location.href = mail;
}