	<!-- Hide script from old browsers

	dayName = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")

	function showTheHours(theHour) {
		if (theHour == 0) {
			return (12)
		}
		if (theHour < 13) {
			return (theHour)
		}
		return (theHour-12)
	}

	function showZeroFilled(inValue) {
		if (inValue > 9) {
			return ":" + inValue
		}
		return ":0" + inValue
	}

	function showAmPm(thatTime) {
		if (thatTime < 12) {
			return (" AM ")
		}
		return (" PM ")
	}


	
	function showIndiaTime() {
		thatTZ = new Date
		dateStr2 = thatTZ.toGMTString()
		dateStr = dateStr2.substr(0,dateStr2.length - 3)
		thatTZ.setTime(Date.parse(dateStr))
		thatTZ.setHours(thatTZ.getHours() + 5)
		thatTZ.setMinutes(thatTZ.getMinutes() + 30)
		
		
		return showTheHours(thatTZ.getHours()) + showZeroFilled(thatTZ.getMinutes()) + showAmPm(thatTZ.getHours()) 
	}
	
	function showIndiaDate() {
		thatTZ = new Date
		dateStr2 = thatTZ.toGMTString()
		dateStr = dateStr2.substr(0,dateStr2.length - 3)
		thatTZ.setTime(Date.parse(dateStr))
		thatTZ.setHours(thatTZ.getHours() + 5)
		thatTZ.setMinutes(thatTZ.getMinutes() + 30)
		
		
		return thatTZ.toDateString()
	}
// End hiding script from old browsers -->
	
