if ( !isset($orderBy) ) $orderBy ="id";
   if ( !isset($orderDir) ) $orderDir ="ASC";
   if ( !isset($parent) ) $parent='';
//   echo "Listado de Estilos
";
   displayList($conexion, $orderBy, $orderDir, $parent);
function cambiaProporciones()
{
 global $db_Foto_w, $db_Foto_h;
 $W = 125; $H=125; 
 if ( $db_Foto_w > 0 )
 {
  if ( $db_Foto_w > $db_Foto_h )
  {
	  $db_Foto_h = intval(($db_Foto_h/$db_Foto_w)*$W); $db_Foto_w=$W;
  } else {
	  $db_Foto_w = intval(($db_Foto_w/$db_Foto_h)*$H); $db_Foto_h=$H;
  }
 }
}
function displayList($cnx, $orderBy, $orderDir, $parent)
{
 global $db_Foto_w, $db_Foto_h;
 $thisLOCATION = "./?dgo=ver_grupo.php";
 $res = @mysql_query( "SELECT e.id, e.titulo, e.descr, e.Foto_mime, e.Foto_w, e.Foto_h FROM estilos AS e WHERE e.parent='$parent' ORDER BY e.$orderBy $orderDir", $cnx ) OR die( "Error
".@mysql_error($cnx) );;
 $numBloq = 0;
 echo "";
 echo "
";
 while( $datos=@mysql_fetch_array($res) )
 {
  list ( $db_id, $db_titulo, $db_descr, $db_Foto_mime, $db_Foto_w, $db_Foto_h )= $datos;
  
  $numBloq++;
  cambiaProporciones();
  $lBlq1 = "
$db_titulo"; 
  
  if ( $numBloq == 1 )
   echo "";  
  echo " | "; 
  if ( $numBloq == 3 )
   echo "
";
 }
 
 if ($numBloq == 1) echo " |  | ";
 else if ($numBloq==2) echo " | ";
 echo "
";
}
?>