// Adaptable Digits Master JavaScript Library

function getdate() {
	var mydate = new Date();
	var dayofweek = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
	var months = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
	var myYear = mydate.getYear();
	if (myYear < 1000) myYear += 1900;
	document.write(months[mydate.getMonth()] + " " + mydate.getDate() + ", " + myYear);
}


function dataWindow()  {
	window.open('', 'dataWindow', 'toolbar=no,width=520,height=400,resizable,scrollbars=no')
	}

// Used to open 800/600 security enhanced windows for check ordering.

function videoWindow(address)  {
    var address = new String(address);
	window.open(address, 'videoWindow', "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,width=320,height=330")
	}

function quicktimeWindow(address)  {
    var address = new String(address);
	window.open(address, 'videoWindow', "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,width=380,height=360")
	}

