function MakeArray(n) {
	this.length = n
	return this
} 

monthNames = new MakeArray(12)
monthNames[1] = "January"
monthNames[2] = "February"
monthNames[3] = "March"
monthNames[4] = "April"
monthNames[5] = "May"
monthNames[6] = "June"
monthNames[7] = "July"
monthNames[8] = "August"
monthNames[9] = "September"
monthNames[10] = "October"
monthNames[11] = "November"
monthNames[12] = "December" 

dayNames = new MakeArray(7)
dayNames[1] = "Sunday"
dayNames[2] = "Monday"
dayNames[3] = "Tuesday"
dayNames[4] = "Wednesday"
dayNames[5] = "Thursday"
dayNames[6] = "Friday"
dayNames[7] = "Saturday"

function customDateString(oneDate) {
var offset = 0;
if(navigator.userAgent.substring(25,29) != "MSIE")  {
offset = 1900;
}
	var theDay = dayNames[oneDate.getDay() + 1]
	var theMonth = monthNames[oneDate.getMonth() + 1]
	var theYear = oneDate.getYear()
theYear = theYear + offset;
	return theDay + ", " + theMonth + " " + oneDate.getDate() + ", " + theYear
}

function skyhawk() {
window.open('http://www.skyhawk.cessna.com','sh');
}
function skyhawksp() {
window.open('http://www.skyhawksp.cessna.com','sh');
}
function stationair() {
window.open('http://www.stationair.cessna.com','sh');
}
function turbostationair() {
window.open('http://www.turbostationair.cessna.com','sh');
}
function skylane() {
window.open('http://www.skylane.cessna.com','sh');
}
function turboskylane() {
window.open('http://www.turboskylane.cessna.com','sh');
}

