<!--
	dateString=getDateString();
	str="";
	logoStr=">>>>>> Host family accommodations from Arc Student Educational Travel, CALL +44 20 8686 1450 <<<<<<";

	var bV=parseInt(navigator.appVersion);

	IE=((document.all)&&(bV>=4))? true : false;

	NS6=(document.getElementById && (IE == false)) ? true : false;
	
	NS4=(document.layers && (NS6 == false)) ? true : false;

	function changecolorto(item, newColor) {

	    if (IE) {

			whichEl = eval("Table" + item);

			if (whichEl.bgColor != newColor)
				whichEl.bgColor = newColor;
	    }

	    if (NS4) {
	    }

	    if (NS6) {

			whichEl = document.getElementById("Table" + item);

			if(whichEl.bgColor != newColor)
				whichEl.bgColor = newColor;
	    }
	}
	function getDateString()
	{
		var mydate=new Date();
		var year=mydate.getYear();
		if (year < 1000)
			year+=1900;
		var day=mydate.getDay();
		var month=mydate.getMonth();
		var daym=mydate.getDate();
		if (daym<10)
			daym="0"+daym;
		var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
		var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
		/* declare global variable to hold dateString */
		return "&nbsp"+dayarray[day]+", "+daym+" "+montharray[month]+" "+year+"&nbsp";
	}
	
	function setMessage()
	{
		if (str == "")
	    {
	        for (var ii = 0; ii < 120; ii += 10) {str = str + "          "}
	        str = str + logoStr;
	    }
	    else
	    {
	       str = str.substring(2, str.length)
	    }
	    window.status = str
		runStr="setMessage("+str+","+logoStr+")";
	    STBTimeOutID = window.setTimeout('setMessage()',100)
	}
	function tick() {
		var hours, minutes, seconds, ap;
		var intHours, intMinutes, intSeconds;
		var today;
		today = new Date();
		intHours = today.getHours();
		intMinutes = today.getMinutes();
		intSeconds = today.getSeconds();
		if (intHours == 0) {
			hours = "12:";
			ap = "AM";
		} else if (intHours < 12) {
			hours = intHours+":";
			ap = " AM";
		} else if (intHours == 12) {
			hours = "12:";
			ap = "PM";
		} else {
			intHours = intHours - 12
			hours = intHours + ":";
			ap = " PM";
		}

		if (intMinutes < 10) {
			minutes = "0"+intMinutes+":";
		} else {
			minutes = intMinutes+":";
		}

		if (intSeconds < 10) {
			seconds = "0"+intSeconds+" ";
		} else {
			seconds = intSeconds+" ";
		}
//		timeString = dateString+" "+hours+minutes+seconds+ap;
		timeString = dateString;
		Clock.innerHTML = "<B>"+timeString+"</B>";
//		window.setTimeout("tick();", 100);
	}
//-->

