//----------------------------------------------------------------
// Select-n-Go			Src_jumpPage.js
//----------------------------------------------------------------
/* 	Version		Date		Author		Notes
	-------		----------	----------	--------------------------
	1.0.0		06/09/2003	Tom Wall
*/
//----------------------------------------------------------------
/*
	Retrieve the selected URL and open that page
*/
function jumpPage(newLoc){	
	newPage = newLoc.options[newLoc.selectedIndex].value

	if (newPage != "") {
		window.location.href = newPage
	}
}
//----------------------------------------------------------------
