function clearInput(text, inputObj) 
{
	if (inputObj.value == text)
		inputObj.value = '';
}

function makeSelection(selection) 
{
	var u = selection.options[selection.selectedIndex].value;
	var l = './?sel=' + u;
	if (u)
	{
		if (u.indexOf("http") > -1)
			window.location.href = u;
		else
			window.location.href = l;
	}

	return true;
}
