		<!--
			var timer_running=false;
			var timer_ID= null;
			
			function isDefined(x) {
				if(x == null || typeof(x) == "undefined" || typeof(x) == "string" && x == "null")
					return false;
				else
					return true;
			};

			function getObject(elmID) {
				if(!this.isString(elmID)) {return elmID;}

				if(document.getElementById) {elmID = document.getElementById(elmID);}	// Is the browser W3C DOM compliant?
				else if(document.all) {elmID = document.all[elmID];}			// Is the browser DHTML DOM compliant?
				else if(document.layers) {elmID = this.getLayer(elmID);}
				else if(document.forms) {
					if(document.forms[elmID]) {elmID = document.forms[elmID];}
					else {
						for(var i=0; i<document.forms.length; i++) {
							if(document.forms[i][elmID]) {
								elmID = document.forms[i][elmID];
								break;
							}
						}
					}
				}
				else {elmID = null;}
				return elmID;
			};

			function getLayer(elmID, objRoot) {
				var i = 0;
				var objLayer = null;
				var objFound = null;

				if(!objRoot) {objRoot = window;}

				for(i=0; i<objRoot.document.layers.length; i++) {
					objLayer = objRoot.document.layers[i];

					if(objLayer.id==elmID) {return objLayer;}

					if(objLayer.document.layers.length) { 
						objFound = getLayer(elmID,objLayer);
					}

					if(objFound) {return objFound;}
				}

				return null;
			};

			function isString(x) {
				if(!this.isDefined(x)) {
					return false;
				}
				if(typeof(x) == "string") {
					return true;
				}
				return false;
			};

			function LoStop(){
				if (timer_running) clearTimeout(timerID);
				timer_running=false;
			}

			function LoStart(){
				LoStop();
				LoShow();
			}

			function go(){
				timerID = setTimeout('LoStart()',5000);
				timer_running=true;
			}

			function LoShow(){
				var BuildItLogo;
			
				BuildItLogo = getObject("builditicon");

				if (isDefined(BuildItLogo) && document.images) {
					BuildItLogo.src = "http://www.webitconnect.com/Chat/OnlineStatus.aspx?GUID=E12BA505-4076-446A-9737-5A1A343B067B&rt=" + Math.random();
				}

				timerID = setTimeout('LoStart()',5000);
				timer_running=true;
			}

		//-->
