function doSelect(formObject,selectvalue) {
	for (x=0;x<formObject.options.length;x++) {
		ValueVar= formObject.options[x].value
		if (ValueVar == selectvalue) {
			formObject.selectedIndex=x
		}
	}
}

function changePage(url) {
	document.location= url;
}

ScrollSpeed = 400
ScrollChars = 10;
noscroll= false;

function ScrollMarquee() {

window.setTimeout('ScrollMarquee()',ScrollSpeed);

if (noscroll == false) {
	var msg = document.marquee1.text.value;
	document.marquee1.text.value = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
}

}
