function MoveMarquee(delay, direction) {
			var speed;
			if (delay == "fastfast") {
				speed = 10;
			} else if (delay == "fast") {
				speed = 40;
			} else {
				speed = 90;
			}
			document.all.myMarquee.scrollDelay = speed;
			document.all.myMarquee.direction = direction;
}


function dropdown_function() {
if (document.dropdown.Destination.options[document.dropdown.Destination.selectedIndex].value != "") {
    top.location.href = document.dropdown.Destination.options[document.dropdown.Destination.selectedIndex].value;
    }
}


//This script and many more are available free online at -->
//The JavaScript Source!! http://javascript.internet.com -->
//Original:  Somsit Sukkrasanti (kleang@circleofasia.com) -->
//Web Site:  http://www.circleofasia.com -->
//420 from 7*60 because our office in Dar-Es-Salaam is GMT+7 -->
//Begin
function showlocaltime() {
	var today = new Date();
	var difftime = (today.getTimezoneOffset()+180) *60000;
	today.setTime(today.getTime()+difftime);
	document.write(today.toLocaleString());
}

function OpenEnewsLetterSignup()
{
	window.open('enewslettersignup.asp','wndNewsletterSignup','toolbar=no,menubar=yes,location=no,scrollbars=yes,resizable=no,width=320,height=440');
}

