
<!-- début


// NOTE: Si vous utilisez une ' ajoutez un slash devant comme cela :  \'


//  OPTIONS FLASH CHANGER

var showsflash1		= "yes"		// MONTRE LE FLASH IMAGE CHANGER
var showsflash2		= "no"		// MONTRE LE FLASH IMAGE CHANGER 2

var flashcolor		= "4487F0"	// COULEUR DE FOND DU FLASH
var flashspace		= "0"		// DEPLACE LE FLASH DE BAS EN HAUT
var flashwC		= "198"		// LARGEUR FLASH
var flashhC		= "99"		// HAUTEUR FLASH
var bordercolor		= "5D687F"	// COULEUR BORDURE FLASH

var showimage1		= "yes"		// MONTRE LE LOGO

var showdate		= "yes"		// MONTRE LA DATE SUR LES PAGES

// FLASH CHANGER
   if (showsflash1 == "yes") {
document.write('<div class="printhide">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" style="border-top: #'+bordercolor+' 0px solid;border-bottom: #'+bordercolor+' 0px solid;"><tr><td valign="top">');
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+flashwC+'" HEIGHT="'+flashhC+'" id="imagechanger2" ALIGN="">');
document.write('<PARAM NAME=movie VALUE="imagechanger2.swf">');
document.write('<PARAM NAME=quality VALUE=high>');
document.write('<PARAM NAME=bgcolor VALUE=#'+flashcolor+'>');
document.write('<EMBED src="imagechanger2.swf" quality=high bgcolor=#'+flashcolor+'  WIDTH="'+flashwC+'" HEIGHT="'+flashhC+'" NAME="imagechanger2" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
document.write('</EMBED>');
document.write('</OBJECT><br>');
document.write('</td></tr></table>');
document.write('</div>');
} 



// réglage image 1 (logo)
if (showimage1 == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="199"><tr><td align="center">');	
document.write('<br><a href="index.html"><img src="picts/logonew.gif" border="0" width="140" height="125"></a>');
document.write('</td></tr></table>');
}

// Positionnement du MENU en hauteur et largeur dans la page
document.write('<DIV id="menulocation">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="199"><tr><td class="menu-top-border">');
document.write('<img src="picts/menu-top.gif" width="0" height="250" class="menutrans"></a><br>');



// DEBUT LIENS MENUS //


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="index.html" class="menu">Accueil</a>');


document.write('</td></tr><tr><td nowrap>');

document.write('<a href="entreprise.html" class="menu">Espace Entreprise</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="candidat.html" class="menu">Espace Candidat</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="annonce.html" class="menu">Espace Annonces</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="" class="menu"></a>');



// COPIER ET COLLER LES DEUX LIGNES SUIVANTES POUR AJOUTER UN LIEN

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="contact.html" class="menu">Contact</a>');




// FIN DES LIENS //


document.write('</td></tr><tr><td height="1" class="menu_bottom_line">');
document.write('<img src="picts/spacer.gif" width="175" height="25"></a><br>');
document.write('</td></tr><tr><td align="center">');





var xmlfile="tickercontent.txt" //chemin vers ticker txt file sur votre serveur.

//ajax_ticker(xmlfile, divId, divClass (voir style.css), delai (temps d'apparition écran), optionalfadeornot)
new ajax_ticker(xmlfile, "ajaxticker1", "tickerclass", 5500, "fade")
document.write('</td></tr><tr><td align="center">');


// FLASH CHANGER 2
   if (showsflash2 == "yes") {
document.write('<div class="printhide">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" style="border-top: #'+bordercolor+' 1px solid;border-bottom: #'+bordercolor+' 1px solid;"><tr><td valign="top">');
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+flashwC+'" HEIGHT="'+flashhC+'" id="imagechanger" ALIGN="">');
document.write('<PARAM NAME=movie VALUE="imagechanger.swf">');
document.write('<PARAM NAME=quality VALUE=high>');
document.write('<PARAM NAME=bgcolor VALUE=#'+flashcolor+'>');
document.write('<EMBED src="imagechanger.swf" quality=high bgcolor=#'+flashcolor+'  WIDTH="'+flashwC+'" HEIGHT="'+flashhC+'" NAME="imagechanger" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
document.write('</EMBED>');
document.write('</OBJECT><br>');
document.write('</td></tr></table>');
document.write('<br><br>');
document.write('</div>');
}




document.write('</td></tr></table></DIV>');




// DEBUT DU SCRIPT DE LA DATE
   if (showdate == "yes") {

document.write('<div id="date-location">');
var d=new Date()
var weekday=new Array("Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi")
var monthname=new Array("Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre")
document.write('<img src="picts/spacer.gif" width="10" height="12"></a>');
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(d.getDate() + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}


//  Fin -->