Subversion Repositories personal-webbase

Rev

Rev 14 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 14 Rev 15
Line 781... Line 781...
781
  }
781
  }
782
 
782
 
783
  return $erg;
783
  return $erg;
784
}
784
}
785
 
785
 
786
function gfx_begintable()
786
function wb_draw_table_begin()
787
{
787
{
788
  echo '<div align="center"><table cellspacing="0" cellpadding="2" border="0" width="90%">';
788
  echo '<div align="center"><table cellspacing="0" cellpadding="2" border="0" width="90%">';
789
}
789
}
790
 
790
 
791
function gfx_endtable()
791
function wb_draw_table_end()
792
{
792
{
793
  echo '</table></div><br>';
793
  echo '</table></div><br>';
794
}
794
}
795
 
795
 
796
function gfx_tablecontent()
796
function wb_draw_table_content()
797
{
797
{
798
  echo '<tr class="row_tab" onmouseover="this.className=\'row_tab_act\';" onmouseout="this.className=\'row_tab\';">';
798
  echo '<tr class="row_tab" onmouseover="this.className=\'row_tab_act\';" onmouseout="this.className=\'row_tab\';">';
799
  $j = 0;
799
  $j = 0;
800
  for ($i=0; $i < @func_num_args(); $i=$i+2)
800
  for ($i=0; $i < @func_num_args(); $i=$i+2)
801
  {
801
  {