/* ********************************************************************************************** */
/* ***** 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;
    };
};
