	function makeArray(n) {
						this.length = n
						return this
					}
						
					
					function dateString(twoDate) {
						var theMonth = monthNames[twoDate.getMonth() + 1]
						var theYear = twoDate.getFullYear()
					
						if (theMonth == 0) hrs=12;
						if (theMonth<=9) theMonth="0"+theMonth;
					
							return twoDate.getDate()
						}
					
						//document.write('Local Time ');
						//document.write('<span id="clock"></span>');
					
					function upclock(){
						var dte = new Date();
						var hrs = dte.getHours();
						//alert(hrs);
						var min = dte.getMinutes();
						var sec = dte.getSeconds();
					
						var col = ":";
						var spc = " ";
						var com = ",";
						var apm;
					
						if (hrs>12) {
						apm="pm";
						hrs-=12;
						}else {
						apm="am";
						}
					
						if (hrs == 0) hrs=12;
						if (hrs<=9) hrs="0"+hrs;
						if (min<=9) min="0"+min;
						if (sec<=9) sec="0"+sec;
					
						clock.innerHTML = hrs+col+min+col+sec+spc+apm;
					}
