/*
name: dateForLinks.js
version: 0.1
author: Francisco
date: 8/20/09
last update: 8/20/09
description: This basic script will print todays date.
*/

function printDate()
{
        //get the date and store it a human readable form
	var today = new Date();
        var todaysDate = today.toDateString();

	var datePlace = document.getElementById("links_date");

	datePlace.innerHTML = todaysDate;
}
