<!--

function sbox(id) {
	if (id.value == "Search") {
		id.value = "";
	}
}

function min(id) {
	var sStyle = ".style";
	var Cell = eval(id + sStyle);

	Cell.backgroundColor = "#0033FF";
	Cell.cursor = "hand";
}

function mout(id) {
	var sStyle = ".style";
	var Cell = eval(id + sStyle);

	Cell.backgroundColor = "";
	Cell.cursor = "";
}

function redirect(x)
{
	if (x.options[x.selectedIndex].value != "NoSelect") {
		location.href = x.options[x.selectedIndex].value;
	}
}
// -->