function Cadre_Coordonnees()

{

document.writeln('<div id="cadreadresse">');

document.writeln('<div id="cadretitre">');
document.writeln('Nous contacter');
document.writeln('</div>');


document.writeln('<div id="cadre">');
document.writeln('<b>Office de Tourisme d\'AUFFAY</b><br>');

document.writeln('27, place de la R&eacute;publique<br>');
document.writeln('76720 AUFFAY<br>');
document.writeln('T&eacute;l/Fax : 02.35.34.13.26<br>');

document.writeln('<a href="mailto:infos@ot-auffay.fr" class="mail">infos@ot-auffay.fr</a><br><br>');

document.writeln('</div>');

document.writeln('</div>');

}
;

function Cadre_Site_General()

{

document.writeln('<div id="cadregeneral">');

document.writeln('<div id="cadretitre">');
document.writeln('A port&eacute;e de clic...');
document.writeln('</div>');

document.writeln('<div id="cadre">');

document.writeln('<b>Retrouvez toutes les informations sur AUFFAY et sa r&eacute;gion</b><br />');

document.writeln('Patrimoines naturel et culturel...<br />');
document.writeln('Ev&egrave;nements...<br />');
document.writeln('H&eacute;bergement...<br />');

document.writeln('<a href="http://www.ot-auffay.fr/">http://www.ot-auffay.fr/</a><br><br>');

document.writeln('</div>');

document.writeln('</div>');

}
;

function Cadre_Logo()

{
document.writeln('<div id="cadre">');
document.writeln('<img src="img/logo.jpg">');
document.writeln('</div>');
}
;

function Gener_Publicite(start)

{

Tab_Pub=Liste_Publicites();

if (!start) {n_cpt=Math.round(Math.random()*(Tab_Pub.length-1));}
else {var n_cpt=start*1;};

document.getElementById("contenupub").innerHTML=Tab_Pub[n_cpt];

if (n_cpt>=Tab_Pub.length-1)

{n_cpt=0;}

else

{n_cpt++;};



setTimeout('Gener_Publicite(\''+n_cpt+'\');',12000);

}

;

function EnTete_Publicite()

{

document.writeln('<div id="cadrepublicite">');

document.writeln('<div id="cadretitre">');

document.writeln('Publicit&eacute;');

document.writeln('</div>');

document.writeln('<div id="contenupub">&nbsp;</div>');

document.writeln('</div>');

Gener_Publicite();

};

