<!-- 
if (top.location !=self.location) {
					top.location=self.location
			}

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

			monName = new Array ("January","February","March","April","May","June","July","August","September","October","November","December")

			now = new Date
			
			function showTheHours(theHour) { 
				if (theHour > 0 && theHour < 13){
  					return (theHour)
  				}

				if (theHour==0) {
					return (12)
				}
				return (theHour-12)
			}

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

			function showAmPm() {
				if (now.getHours() < 12) {
					return (" AM")
				}
				return (" PM")
			}

			function showTheTime() {
				now=new Date

				document.theForm.showTime.value=showTheHours(now.getHours()) + showZeroFilled(now.getMinutes()) + showZeroFilled(now.getSeconds()) + showAmPm()

				setTimeout("showTheTime()",1000)
			}
			
	google_ad_client = "pub-5899582981515384";
	google_ad_width = 120;
	google_ad_height = 240;
	google_ad_format = "120x240_as";
	google_ad_type = "text_image";
	google_ad_channel = "";
	google_color_border = "FF0000";
	google_color_bg = "FFFFFF";
	google_color_link = "cc0000";
	google_color_text = "000000";
	google_color_url = "cc0000";
	
// -->			
