/* text-include for hem.passagen.se/rasmuse/ */
function domainDate()
{
	if (document.domain == "hem.passagen.se") {
		document.write('Senast &auml;ndrad 3 juni 2003');
	} else {  /* abc.se */
		mydate = new Date(document.lastModified);
		document.write(myMonth(mydate.getMonth()) + ' ' + mydate.getDate() + ', ' + mydate.getFullYear());
	}
}

//domainDate();
document.write('Document date: June 3, 2003');
document.writeln('<BR>');

/* obfuscated mailto */
document.write('<a href="mai');
document.write('lto:rasmu');
document.write('s.ekma');
document.write('n@');
document.write('abc.s');
document.write('e">rasmus.ekm');
document.writeln('an@abc.se</a>');

document.writeln('<BR>&nbsp;<BR>');


function myMonth(m)
{
	moo = new Array(12);
	moo[1] = "Jan";		moo[2] = "Feb";		moo[3] = "March";
	moo[4] = "April";	moo[5] = "May";	moo[6] = "June";
	moo[7] = "July";	moo[8] = "Aug";	moo[9] = "Sept";
	moo[10] = "Oct";	moo[11] = "Nov";	moo[12] = "Dec";
	return moo[m];
}


