<?php
$now = date("m/j/y h:i:s",time());
include "../connect.php";
print '<HTML>';
print ' <HEAD>';
print ' <TITLE>Lead Iaso</TITLE>';
print ' </HEAD>';
print '<body bgcolor="#FFFFCC">';
$now = date("j/m/y h:i:s",time());
$stmt = "Select a.lab, a.serial, b.display_name from LAB a, owner b where a.liaso = b.serial";
$sth = ibase_query($dbh, $stmt);
?>
<body bgcolor="#ffffff" text="#000000">
<?
print '<table width="140" bgcolor="#ffFFCC" border="2">';
while ($row = ibase_fetch_object($sth)) {
print '<input type="hidden" name="serial[]" value="' . $row->SERIAL . '">';
print '<tr><td>';
print '<a href="/liaso/addiaso.php';
print '?SERIAL=' . $row->SERIAL . '" target="rightFrame"><b>' . trim($row->LAB) . '</b>';
print '</A></td>';
print '</tr>';
}
print '</table>';
?>