// This will show the "Copyright" notice inserted at the end of all pages //
// until the actual year //

var today 		= new Date();
    year    	=     today.getYear();
var y           = new String(year)

		if (y.length==2) {
			y = "19" + y}
        if (y.length==3) {
				if ((year-100) < 10) {
				   y = "200" + (year-100)}
				else {
				   y = "20" + (year-100)}
				}

document.write("Copyright &#169; 2000-" + y + " ")
