<!--//
function getDate()
{
x = new Date();
d = x.getDay();
m = x.getMonth();
t = x.getDate();
y = x.getYear();
if (y < 1000) y+=1900
c = parseInt(y/100);
g = y%19;
k = parseInt((c-17)/25);
i = (c-parseInt(c/4)-parseInt((c-k)/3)+19*g+15)%30;
i = i-parseInt(i/28)*(1-parseInt(i/28)*parseInt(29/(i+1))*parseInt((21-g)/11));
j = (y+parseInt(y/4)+i+2-c+parseInt(c/4))%7;
l = i-j;
b = 3+parseInt((l+40)/44);
b--;
var z = new Array ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
var r = new Array ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
document.write(r[m]+" "+t+", "+y+" &nbsp; ("+z[d]+")");
}
// -->