// JavaScript Document

//change copyright date automaticly.
var thisYear = new Date();
copyRight = thisYear.getFullYear(); // retrieves four digit year
{
    document.write(copyRight);
}
