//BROWSER SPECIFIC INPUT FIELDS.
//this document writes different sized input fields according to browser to accomodate rendering differences


<!--
if (isMac) {
  document.write('<!-- Search Google -->   <FORM METHOD=get ACTION="http://www.google.com/u/NYUCAT" TARGET=_blank>   <tr>    <td></td>    <td><input type=text name=q size=10 maxlength=80></td>   </tr>  <tr>    <td></td>    <td> <!-- <input type=submit name=sa VALUE="Google Search"> -->    <input type="image" name=sa VALUE="Google Search" src="../images/search_button.gif" border="0"> </td>   </tr> </FORM> <!-- Search Google --> ');
} else {
  document.write('<!-- Search Google -->   <FORM METHOD=get ACTION="http://www.google.com/u/NYUCAT" TARGET=_blank>   <tr>    <td></td>    <td><input type=text name=q size=10 maxlength=80></td>   </tr>  <tr>    <td></td>    <td> <!-- <input type=submit name=sa VALUE="Google Search"> -->    <input type="image" name=sa VALUE="Google Search" src="../images/search_button.gif" border="0"> </td>   </tr> </FORM> <!-- Search Google -->');
}
//-->

