/*
// Mauro Silvosa Rivera
// 2004.03.03
// ------------------------
// Funciones varias.
*/

function printYear() {
   d = new Date();
   document.write(d.getFullYear());
}

function printDate() {
	d = new Date();
	document.write(d.getDate()+"/"+(d.getMonth()+1)+"/"+d.getFullYear());
}

function printCopyRightOwner() {
	document.write("&copy 2003 - ");
	printYear();
	document.write(". optimus.meleeisland.net ");
}
