function rellenarDatosNaturaleza() 
{
		
}

function rellenarDatosContenido()
{
}

function rellenarDatosPersonales()
{

}

//----------
  	function setCombo(name,enabled,value) {
  		var select = eval("document.forms[0]."+name);
					
  		if (enabled) { 
 	 		var index;
 			for (var i=0;i<select.options.length;i++) {
  				if (select.options[i].value==value) { index = i; break; }
  			}
	  		select.selectedIndex = index;	
  		}
 		select.disabled = !enabled;
  	}