function goDirectlyToPage(pName)
{
var dropDown = document.getElementById(pName);

if (dropDown.selectedIndex >= 0)
	{
		window.location.href = dropDown.options[dropDown.selectedIndex].value;
	}
}

function changeDisplaySortOrder(pName)
{
var dropDown = document.getElementById(pName);

if (dropDown.selectedIndex >= 0)
	{
		window.location.href = dropDown.options[dropDown.selectedIndex].value;
	}
}

function recsPerPage(dropDown)
{
var strNewURL = '';
var inPos1;
var inPos2;
var strURL = window.location.href;
if (dropDown.selectedIndex >= 0)
	{
		//alert('create new url');
		strNewURL = removeItemFromWindowURL(strURL,'View');
		//alert('View Cleaned URL = ' + strNewURL);
		strNewURL = removeItemFromWindowURL(strNewURL,'Nao');
		//alert('Nao Cleaned URL = ' + strNewURL);
		//alert('index = ' + dropDown.selectedIndex);
		//alert('value = ' + dropDown.options[dropDown.selectedIndex].value);
		strNewURL = strNewURL + '&Nao=0&View=' + dropDown.options[dropDown.selectedIndex].value;
		//alert('strNewURL = ' + strNewURL);
		window.location.href = strNewURL;
	}
}