setup_column_alignments():  Adding valign=baseline to the <td> tag
			    makes the alignment work on Navigator as
			    well as IE.  Uglier HTML, but it looks
			    right.
diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl
index 36f0f15..2b6fa18 100644
--- a/Doc/perl/python.perl
+++ b/Doc/perl/python.perl
@@ -808,7 +808,8 @@
     local($_) = @_;
     my($a1,$a2,$a3,$a4) = split(/[|]/,$_);
     my($th1,$th2,$th3,$th4) = ('<th>', '<th>', '<th>', '<th>');
-    $col_aligns[0] = (($a1 eq 'c') ? '<td align=center>' : '<td>');
+    $col_aligns[0] = (($a1 eq 'c') ? '<td align=center valign=baseline>'
+		                   : '<td valign=baseline>');
     $col_aligns[1] = (($a2 eq 'c') ? '<td align=center>' : '<td>');
     $col_aligns[2] = (($a3 eq 'c') ? '<td align=center>' : '<td>');
     $col_aligns[3] = (($a4 eq 'c') ? '<td align=center>' : '<td>');