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;
}