<!--
												// This script and many more are available free online at -->
												<!-- The JavaScript Source!! http://javascript.internet.com -->
												<!-- Begin
												var months=new Array(13);
												months[1]='Enero';
												months[2]='Febrero';
												months[3]='Marzo';
												months[4]='Abril';
												months[5]='Mayo';
												months[6]='Junio';
												months[7]='Julio';
												months[8]='Agosto';
												months[9]='Sept.';
												months[10]='Octubre';
												months[11]='Nov.';
												months[12]='Dic.';
												var time=new Date();
												var lmonth=months[time.getMonth() + 1];
												var date=time.getDate();
												var year=time.getFullYear();
												document.write(date + ' de ' + lmonth + ' del ' + year + ' ');
												// End
												// -->