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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
<!-- DEBUT CORPS -->
<div id="wrapper">
<div id="contentaccueil">
{$TXTINTRO}
{if $showpresentation==1}
<div class="presentation" style="padding:0px 0px">
<ul>
{foreach from=$ongletsaccueil item=onglet}
<li id="li_{$onglet.id}" onclick="AffEcranHome({$onglet.id},{$nbongletsaccueil}); toog(myEffect[{$onglet.id}]);" style="cursor:pointer;">{$onglet.titre}</li>
{/foreach}
</ul>
</div>
{foreach from=$ongletsaccueil item=onglet}
<div id="ecran{$onglet.id}">
<div class="SousCadrePresentation">
<p>{$onglet.contenu}</p>
</div>
</div>
{/foreach}
{/if}
{$TXTMAEVA}
</div>
</div>
<!-- FIN CORPS -->
<!-- DEBUT INFOS PLUS -->
<div id="navigation">
<div class="cadre">
<div class="featurebox">
<h3>{$titrecadregauche}</h3>
<ul class="nav-verti">
{foreach name=info from=$infosplus item=infoitem}
<li {if $smarty.foreach.info.first}class="first"{/if}><a href="{$infoitem.url}">{$infoitem.sujet}</a></li>
{/foreach}
</ul>
</div>
</div>
{if $cadregauche!=''}
<div class="cadre">
<div class="featurebox">
{$cadregauche}
</div>
</div>
{/if}
{if $cadregauche2!=''}
<div class="cadre">
<div class="featurebox">
{$cadregauche2}
</div>
</div>
{/if}
</div>
<!-- FIN INFOS PLUS -->
<!-- DEBUT PARTIE DROITE -->
<div id="extra">
<div class="cadre">
<div class="featurebox">
<h3>Vidéo</h3>
<p><img src="/images/img/peintre.jpg" alt="Video lara-btp" /></p>
<p class="fin">Sur les 3300 substances déclarées dangereuses par l’Union Européenne, on estime qu’entre 150 et 200 d'entre elles sont utilisées quotidiennement dans le BTP. Leur utilisation sans protection peut s’avérer dangereuse pour la santé.
Voir le reportage en images.<br>
<a href="javascript:popup('../video/high.html', 460, 400) ">Haut débit</a> <a href="javascript:popup('../video/low.html', 300, 260) ">Bas débit</a></p>
</div>
</div>
<div class="cadre">
<div class="featurebox">
<h3>Quiz</h3>
<p><img src="/images/img/img3.gif" alt="quiz lara-btp" /></p>
<p>Evaluation des risques chimiques : comment faire ?<br>
<a href="javascript:popup('/max/quiz/index.htm', 957, 701)">Testez vos connaissances</a>
<br /><br />
<span class="legende">PC uniquement <br /> Installer <a href="http://www.livingactor.com/english/download/index.htm" target="_blank" class="legende-lien">Living Actor</a> et <a href="http://www.macromedia.com/shockwave/download/index.cgi?Lang=French&P5_Language=French&P1_Prod_Version=ShockwaveFlash&Lang=French" target="_blank" class="legende-lien">Flash Player</a></span></p>
</div>
</div>
{if count($news) > 0}
<div class="cadre">
<div class="featurebox">
<h3>Actualités </h3>
{foreach from=$news item=newsitem}
<p><b>{$newsitem.sujet}</b><br>
{$newsitem.texte}<br>
<a href="{$newsitem.url}">Cliquez-ici</a></p>
{/foreach}
</div>
</div>
{/if}
</div>
<!-- FIN PARTIE DROITE -->
{literal}
<script type="text/javascript">
var myEffect = new Array();
function startupFunction()
{
AffEcranHome(0,{/literal}{$nbongletsaccueil}{literal});
for (i=1;i<={/literal}{$nbongletsaccueil-1}{literal};i++)
$("ecran" + i).style.height = 0;
for (i=0;i<={/literal}{$nbongletsaccueil-1}{literal};i++)
myEffect[i] = new fx.Height($("ecran" + i), {duration: 400});
}
function toog(elt)
{
for (i=0;i<={/literal}{$nbongletsaccueil-1}{literal};i++)
{
if (elt == myEffect[i])
myEffect[i].myshow();
else
myEffect[i].myhide();
}
}
if(window.attachEvent) window.attachEvent("onload", startupFunction);
else window.addEventListener('load', startupFunction, false);
</script>
{/literal} |
Partager