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 36 37 38
| <html>
<script language="javascript" type="text/javascript">
function frameencours(xx)
{
document.all(xx).height = "50%";
}
</script>
<body onload="frameencours('frameintro'); frameencours('frameactu');">
<form style="width: 100%;" name="Feuille">
<div align="center">
<table style="width: 1000px; height: 610px;" border="0">
<tr valign="top">
<td style="width: 100%;" height="100%">
<iframe id="frameactu" style="position: relative;" name="frameactu" src="http://www.google.fr"
height="0%"width="100%"></iframe>
<iframe id="frameintro" style="position: relative;" name="frameintro"
src="http://www.developpez.net/forums/newreply.php?do=newreply&noquote=1&p=1448132" height="0%" width="100%"></iframe>
</td>
</tr>
</table>
</div>
</body>
</html> |