function remove(id,where) 
{
   var agree=confirm("\u00BF Esta seguro que quiere borrar este elemento ? ");
    
   if (agree)
    document.location.href = where;
   else
      return;
    
}
