<!-- // Date operations and VisitURL() function.

function GetDate() {
	var today = new Date();
	var theMonth = today.getMonth()+1;
	var theDate = today.getDate();
	var theYearPre = today.getYear();
	
	var theMonthName;
	if (theMonth==1)
		theMonthName=("January");
	else if (theMonth==2)
		theMonthName=("February");
	else if (theMonth==3)
		theMonthName=("March");
	else if (theMonth==4)
		theMonthName=("April");
	else if (theMonth==5)
		theMonthName=("May");
	else if (theMonth==6)
		theMonthName=("June");
	else if (theMonth==7)
		theMonthName=("July");
	else if (theMonth==8)
		theMonthName=("August");
	else if (theMonth==9)
		theMonthName=("September");
	else if (theMonth==10)
		theMonthName=("October");
	else if (theMonth==11)
		theMonthName=("November");
	else
		theMonthName=("December");

	var iLenYear = String(theYearPre).length;
	var theYear = "20" + String(theYearPre).substring(iLenYear, iLenYear - 2);

	return theMonthName + ' ' + theDate.toString() + ', ' + theYear;
}

function GetTimestamp() {
	var today = new Date();
	var theMonth = today.getMonth()+1;
	var theDate = today.getDate();
	var theYearPre = today.getYear();
	var iLenYear = String(theYearPre).length;
	var theYear = "20" + String(theYearPre).substring(iLenYear, iLenYear - 2);
	var theHour = today.getHours();
	var theMinute = today.getMinutes();
	var theSecond = today.getSeconds();
	var theMilliSecond = today.getMilliseconds();

	return theYear + theMonth + theDate.toString() + theHour + theMinute + theSecond + theMilliSecond;
}

function GetYear() {
	var today = new Date();
	var theYearPre = today.getYear();
	var iLenYear = String(theYearPre).length;
	var theYear = "20" + String(theYearPre).substring(iLenYear, iLenYear - 2);

	return theYear;
}

function VisitURL(url)
{
    window.open(url, GetTimestamp());
}

function VisitURLDDL(ddl)
{
	var url = ddl.options[ddl.selectedIndex].value;
	if (url.length > 0) {
		ddl.selectedIndex = -1;
	    window.location = url;
	    return ddl;
	}
}

function VisitURLDDLInternal(ddl)
{
	var url = ddl.options[ddl.selectedIndex].value;
	if (url.length > 0) {
		ddl.selectedIndex = -1;
	    window.location = url;
	    return ddl;
	}
}
//-->
