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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Page</title>
<style type="text/css">
body
{
margin : 0px;
padding : 0px;
}
#fond
{
width : 100%;
height : 100%;
background-color : #808080;
}
#tableau
{
margin : auto;
left : 50%;
height : 50px;
border : none;
padding :0px;
border-collapse :collapse;
}
#tableau td
{
background-color : #000000;
}
.celluleTexte
{
width : 300px;
height : 15px;
}
.aligneGauche
{
text-align : left;
}
.aligneDroite
{
text-align : right;
}
#tableau td a
{
font-family : Arial, Helvetica, sans-serif;
color : #ffffff;
font-size : 18px;
font-weight : bold;
}
.invisible
{
display : none;
}
</style>
<script type="text/javascript">
<!--
function hauteurPage()
{
var hauteur = document.documentElement.clientHeight;
document.getElementById('fond').style.height = hauteur +'px';
var hauteur = document.documentElement.clientHeight;
hauteur = hauteur - document.getElementById('tableau').clientHeight;
hauteur = hauteur / 2;
document.getElementById('tableau').style.marginTop = hauteur +'px';
}
function popclose()
{
// TODO
}
function fermevisible()
{
// TODO
}
-->
</script>
</head>
<body onload="hauteurPage()">
<div id="fond">
<table id="tableau">
<tr>
<td class="celluleTexte aligneGauche">
<a href="http://www.ledomaine.com" onclick="window.open(this.href);return false;" >xxx</a>
</td>
<td class="celluleTexte aligneGauche">
<a id="ouvre" class="invisible" href="http://www.xxx.com" target="_blank" onclick="popclose()">Ouvrir le site</a>
<a id="ferme" class="invisible" href="javascript:void(0);" onclick="popclose()"> Fermer </a>
</td>
</tr>
<tr>
<td colspan="2">
<iframe width="600" height="400" src="http://www.xxx.com"></iframe>
</td>
</tr>
</table>
</div>
</body>
</html> |