// JavaScript Document
// JavaScript Code

function jumpToPage(){
ctrl=document.getElementById("NavigareRapida");
if(ctrl!=null){
//alert(ctrl.options[ctrl.selectedIndex].value);
if(ctrl.options[ctrl.selectedIndex].value!=""){
	window.location.href=ctrl.options[ctrl.selectedIndex].value
	}
	}
}
