Saleh matani - 2004-05-28

i have in my Web Application Buttons that not in Form , they are in Table , i tryed all possible ways to click this Buttons (Links) but i dose not work, please try this html code if you can help!
thanx
Matani

<html>
<head>
<title>test</title>
</head>

<body>
    <table cellspacing="2" cellpadding="0" border="0">
       <tr>
            <td>
              <button type="button" onclick="window.open('http://www.google.de','_self');" title="googlede" onfocus="window.status='Ausbauen';return true" onblur="window.status='';return true" >&nbsp;google.de</button>
                </td>
                  <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
                  <td>
               <button type="button" onclick="window.open('http://www.google.com','_self');" title="googlecom" onfocus="window.status='Korrigieren';return true" onblur="window.status='';return true" >&nbsp;google.com</button>
             </td>
        </tr>
    </table>
</body>
</html>