var mesesCastellano = new Array('Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre');
var mesesCatala = new Array('Gener','Febrer','Març','Abril','Maig','Juny','Juliol','Agost','Setembre','Octubre','Novembre','Decembre');


	function getStrFechaLong(tipomes) {
		Fecha = new Date();
		any = new String(Fecha.getYear());		
		if (tipomes=="cas") {
			mes = mesesCastellano[Fecha.getMonth()];
		}
		else {
			if (tipomes=="cat") {
				mes = mesesCatala[Fecha.getMonth()];
			}
			else {
				mes = padLeft((Fecha.getMonth()+1),2,'0')
			}
		}
		
		s = Fecha.getDate()+" "+mes+" "+any;

		return s;
	}		


function hoy()
{
	document.write ( getStrFechaLong("cas") );
};