// Overlay
function fondoBrotherBox(){
  
  var brotherboxfondo='<div class="brotherbox"></div>';
  
  $('body').append(brotherboxfondo);
  $('.brotherbox').height('100%');
  $('.brotherbox').width('100%');
  $('.brotherbox').fadeIn('slow');
  
}

// Cerrar
function cerrarFondoBrotherBox(){
  $('.brotherbox').fadeOut('slow');
  $('.brotherbox').remove();
}

// ver popup del detalle del proyecto
function verPopup(id){
  
  // muestro el overlay
  fondoBrotherBox();
  
  // agrego el popup y lo muestro
  //$('body').append();
  $('#boxModal_'+id).fadeIn('slow');
  
}

// Cerrar
function cerrarVerMas(){
  
  $('.boxModal').fadeOut('slow', function(){
	// cierro el overlay
	cerrarFondoBrotherBox();
  });
  
}

//limpiar todos los datos del formulario
function limpiar(){
  $('input[type="text"]').val('');
  $('.area').val('');
}
