1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
   |  
<table cellpadding="0" cellspacing="0">
    <tr>
        <td>
            <input type="radio" name="chkOccupation" ID="chkOccupation" value="" checked>
        </td>
        <td>
            <img src="patisseries/images/menu/Tartes.png" />
        </td>
    </tr>
    <tr>
        <td>
            <input type="radio" name="chkOccupation" ID="Radio1" value="1">
        </td>
        <td>
            <img src="patisseries/images/menu/PetitesPieces.png" />
        </td>
    </tr>
</table>
 
 
 
<script language=javascript> 
function essai() 
{ 
 window.open("patisseries.html","SiteChardon"); 
} 
function essai2() 
{ 
window.open("petitesPieces.html","SiteChardon");
} 
 
window.chkOccupation[0].onclick = essai; 
window.chkOccupation[1].onclick = essai2; 
</script> | 
Partager