function presentaFormato(formato){
		
  //element=this.document.getElementById(formato);
	
	$("#"+formato).fadeIn();	
	
	/*
  new Dialog.Box(element);
  $(element).show();
*/
	
}

function ocultaFormato(formato){
	
	$("#"+formato).fadeOut();	
	
	/*
	element=this.document.getElementById(formato);

     new Dialog.Box(element);
    $(element).hide();
	*/
}