
function mostrarContenido(idkey){
	
	var contenido = unescape(osm_getValor("texto_parametrizable_"+idkey));
	
	//Se remplaza  el input por el texto
	$("#texto_parametrizable_"+idkey).after(contenido);
	$("#texto_parametrizable_"+idkey).remove();
}

function mostrarContenidoCorreo(){
	
	var contenido = unescape(osm_getValor("texto_parametrizable"));
	
	//Se remplaza  el input por el texto
	$("#texto_parametrizable").after(contenido);
	$("#texto_parametrizable").remove();
}