// date //
function Ore(){
	if(ora < 12){ indice = " am";}
  	else{indice = " pm";}
	if(ora <= 12){
		if(ora <= 9) return "0" + ora;
		else return ora;
	} else {
		ora -= 12;
		if(ora <= 12){
			if(ora <= 9){
				return "0" + ora;
			} else {
				return ora;
}	}	}	}
function Minute(){
	if (azi.getMinutes()<=9){
		return "0" + azi.getMinutes() + indice;
	} else return azi.getMinutes() + indice;
}

var add = 0;
var azi=new Date();
var indice = "";
var vect = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
var ora = azi.getHours();
if ( parseInt(azi.getYear())< 1900){add = 1900;}
var current_date = vect[azi.getMonth()]+ " " +azi.getDate() +", " + (parseInt(azi.getYear())+ add) +" - "+ Ore() +":"+ Minute()

/*
<font color=#ffffff face="Arial, Helvetica, sans-serif" size=1><b>
<div align="center" class="date">
<SCRIPT language=JavaScript><!--
if(current_date) document.write(current_date);
// --></SCRIPT></div></b></font>
*/

