function createArray(length){
	for(var i=0; i<length; i++){
		this[i] = null;
	}
	this.length = length;
}

//variables to hold the date objects
var today = new Date();
var day = today.getDay();
var date = today.getDate();
var month = today.getMonth();
var year = today.getFullYear();

//Array to hold the names of the days
var days = new createArray(7);
days[0] = "Sunday";
days[1] = "Monday";
days[2] = "Tuesday";
days[3] = "Wednesday";
days[4] = "Thursday";
days[5] = "Friday";
days[6] = "Saturday";
days[7] = "Sunday";

//Array to hold the names of the months
var months = new createArray(12);
months[0] = "January";
months[1] = "February";
months[2] = "March";
months[3] = "April";
months[4] = "May";
months[5] = "June";
months[6] = "July";
months[7] = "August";
months[8] = "September";
months[9] = "October";
months[10] = "November";
months[11] = "December";

function openwin(theURL,winName,features)
{
	xyz=window.open(theURL,winName,features);
	xyz.focus();
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}