function comboJumpToPage(obj){
	var temp = obj[obj.selectedIndex].value;
	if (temp == "-"){
		alert ("Sorry, this selection is not available at this moment.");
		return false;
	}
	if (temp.length == 0) { return false; }
	//document.location.href=temp;
}

