sorry! here's the code:
<!-- -- php-html-helper -- -->
<head>
<title>IAB Internet Advertising Bureau / UK and Ireland</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<?php include "site.php3"; ?>
<style type="text/css">
a:link { color: #000066; text-decoration: none }
</style>
</head>
<body bgcolor="#FFFFFF" leftmargin=0 marginheight=0 topmargin=0 marginwidth=0>
<table width="652" border="0" cellspacing="0" cellpadding="0" height="422">
<tr>
<td rowspan="8" valign="top" bgcolor="#EEEEEE" width="131" align="center">
<img src="images/top_part2.gif" width="130" height="64">
<img src="images/logo.gif" width="68" height="53" alt="Logo">
<font face="Verdana, Arial, Helvetica, sans-serif" size="-2" color="#000066">
<br><br> News from IAB
<br>
<br> News from<br>industry<br>
<br> Research archives<br>
<br> Link directory<br>
<br> Working groups<br>
<br> Members directory<br>
<br> Partners' directory<br>
<br> Download logo for your site<br>
<br> About IAB <br>
<br> </font>
<img src="images/feedback3.gif" width="114" height="32" alt="Feedback">
<br>
<img src="images/admin3.gif" width="114" height="32" alt="Administrators">
<br>
<img src="images/member3.gif" width="114" height="32" alt="Become a member">
</td>
<td colspan="6" valign="top" height="536" rowspan="8">
<img src="images/top_part4.gif" width="610" height="52"><br>
<img src="images/iab_logo.gif" width="328" height="64" alt="IAB Internet Advertising Bureau UK and Ireland">
<? switch($type) {
case 0 : ?>
<img src="title_images/members3.gif" alt="Link Directory">
<? break;
case 1 : ?>
<img src="title_images/members3.gif" alt="Link Directory">
<? break;
case 2 : ?>
<img src="title_images/partners3.gif" alt="Link Directory">
<? break;
} ?>
<br>
<?php $items = mysql_query("select * from member where type = $type order by name"); ?>
<table width="100%">
<tr>
<td><!-- column 1 -->
<font size="-1">
<?php for($i = 0; $i < (mysql_num_rows($items) / 2); $i++) {
$item = mysql_fetch_array($items); ?>
<p>
<b><?php print format_link($item['url'], $item['name']); ?></b><br>
<?php print $item['description']; ?>
</p>
</font>
</td>
<td><!-- column 2 -->
<font size="-1">
<?php for(; $i < mysql_num_rows($items); $i++) {
$item = mysql_fetch_array($items); ?>
<p>
<b><?php print format_link($item['url'], $item['name']); ?></b><br>
<?php print $item['description']; ?>
</p>
</font>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>