/* ********************************************************************************************** */
/* ***** 1.0 23/04/2008 - PRB - Primera version.                                           ***** */
/* ********************************************************************************************** */

// Redirecciona a portadas taxonomicas seleccionada desde comboboxs.
function SelCombo(formname, idObj){

	obj = document.getElementById(idObj);
	var url = obj.options[obj.selectedIndex].value;
  if(url != ''){
      window.location = url;
  } else {
      return false;
  };
};

function SelComboComuna(formname, idObj){

	obj = document.getElementById(idObj);
	var theId = obj.options[obj.selectedIndex].value;
	var theName = obj.options[obj.selectedIndex].text;
	theName = escape(theName);
	if(theId != ''){
    var theUrl = "/prontus_elecciones2009/stat/cand_comunas.php?_idDistrito="+theId+"&_nameComuna="+theName;
    window.location = theUrl;
  } else {
    return false;
  };
};