
	dayName = new Array (" "," "," "," "," "," "," ")

	function showTheHours(theHour) {
		
		return (theHour)
	}

	function showZeroFilled(inValue) {
		if (inValue > 9) {
			return ":" + inValue
		}
		return ":0" + inValue
	}

	function showAmPm(thatTime) {
		if (thatTime < 25) {
			return ("   ")
		}
		return ("   ")
	}

	function showTheTime(tzOffset) {
		thatTZ = new Date
		dateStr = thatTZ.toGMTString()
		dateStr = dateStr.substr(0,dateStr.length - 3)
		thatTZ.setTime(Date.parse(dateStr))
		thatTZ.setHours(thatTZ.getHours() + tzOffset)
		
		return showTheHours(thatTZ.getHours()) + showZeroFilled(thatTZ.getMinutes()) + showAmPm(thatTZ.getHours()) + dayName[thatTZ.getDay()]
	}


