function DoFindAdvisor(event)
{
    if(event.which || event.keyCode){
      if ((event.which == 13) || (event.keyCode == 13)) {
          __doPostBack('<%=ibFindAdvisor.UniqueID %>','');
                 
      }
    } 
    else {return true}; 

}

function gotoit(event) {
	rundo = "no";
	if (event == "button") {
		rundo = "yes";
	}
	if ((event.which == 13) || (event.keyCode == 13)) {
		rundo = "yes";
	}
	if (rundo == "yes") {
		var list = document.getElementById("LoremSelect");
		if (list) {
			if (list.options[list.selectedIndex].text == "Make a selection") {
				alert("Select an account from the dropdown list and then click the Login button.");
			}
			else {
				pageTracker._trackEvent('External Site', 'Launch', list.value);
				window.open(list.value);
			}
		}
	}
	else { return true };
}

