javascript:
(
  function()
  {
    var commaCount=0;
    var a=document.body.innerHTML.split(',');
    document.write('<table border=1>\n');
    document.write('<tr>');
    for(var ii=0;ii<a.length;ii++)
    {
      if((commaCount>0)&&(ii%commaCount==0)&&(ii+1<a.length))
      {
        var sp=a[ii].lastIndexOf('\n');
        if(sp==-1)
        {
          sp=a[ii].lastIndexOf(' ');
        }
        var p1=a[ii].substring(0,sp);
        var p2=a[ii].substring(sp+1);
        document.write('<td>'+((p1.length==0)?'&nbsp;':p1)+'</td>\n</tr>\n');
        document.write('<tr>\n<td>'+((p2.length==0)?'&nbsp;':p2)+'</td>\n');
      }  
      else
      {
        if(commaCount==0)
        {
          var sp=a[ii].lastIndexOf('\n');
          if(sp==-1)
          {
            sp=a[ii].lastIndexOf(' ');
          }
          if((sp>=0)&&(a[ii].substring(sp+1)=='IE'))
          {
            commaCount=ii;
            ii--;
            continue;
          }
        }
        document.write('<td>'+((a[ii].length==0)?'&nbsp;':a[ii])+'</td>\n');
      }
    }
    document.write('</tr>\n');
    document.write('</table>\n');
  }
)
();