
function loadPageFromValue(component){

	newlocation = component.options[component.selectedIndex].value;
	
	if (newlocation == ''){
		return false;
	}else{
		self.location = newlocation;
		return false;
	}
	
}
