now = new Date();
function nowyear()
{
year=now.getFullYear();
document.write(year);
}

function nowmonth()
{
month=now.getMonth()+1;
date=now.getDate();
document.write(month);
}

function nowdate()
{
date=now.getDate();
document.write(date);
}
function nowday()
{
day=now.getDay();	
return day;
}