function csNavChange(obj)
{
	//Get value (which should be the url you are wanting the user to go to) of the targetpage
	targetPage = obj[obj.selectedIndex].value;

	//If something is selected go!
	if(targetPage != '')
	{
		window.location = targetPage;
	}
}