<!---
// scripts pour menu texte 
// copyright TELABRAIN
fontFace = "arial"               // Font Face
fontColour = "#005496"           // Font Colour
fontHoverColour = "#666666"      // Font Colour on mouse rollover
fontSize = "8pt"                 // Font Size
fontDecoration = "none"          // Style of the link text (none, underline, overline, line-through)
fontDecorationover = "underline"          // Style of the link text (none, underline, overline, line-through)
fontWeight = "bold"            // Font Weight (normal, bold)
menuBackground = "#111111"       // Cell Background Colour

function showMenusTxt(quant,definedOrientation)
{
createStylesTxt(quant);
document.writeln ('<div class="menutxt">');
document.writeln ('<a href="">Page d&rsquo;accueil</a>');
document.writeln ('&nbsp;-&nbsp;');
document.writeln ('<a href="http://www.industryselect.fr/menuHN.php?parAction=sponsors">Annuaire</a>');
document.writeln ('&nbsp;-&nbsp;');
document.writeln ('<a href="http://www.industryselect.fr/menuHN.php?parAction=industrynews">Produits du jour</a>');
document.writeln ('&nbsp;-&nbsp;');
document.writeln ('<a href="http://www.industryselect.fr/newProducts.php">Nouveaux produits</a>');
document.writeln ('&nbsp;-&nbsp;');
document.writeln ('<a href="http://www.industryselect.fr/menuHN.php?parAction=newsletters">Lettres mensuelles</a>');
document.writeln ('&nbsp;-&nbsp;');
document.writeln ('<a href="http://www.industryselect.fr/menuHN.php?parAction=tradeshows">Expositions</a>');
document.writeln ('&nbsp;-&nbsp;');
document.writeln ('<a href="http://www.industryselect.fr/menuHN.php?parAction=partenaires">Nos sites pr&eacute;f&eacute;r&eacute;s</a>');
document.writeln ('<BR>');
document.writeln ('<a href="glossaire/GlossaireISFR1.htm" target="_blank">Glossaire</a>');
document.writeln ('&nbsp;-&nbsp;');
document.writeln ('<a href="http://www.industryselect.fr/menuHN.php?parAction=sponsorsstatic">Publicit&eacute;/R&eacute;f&eacute;rencement</a>');
document.writeln ('&nbsp;-&nbsp;');
document.writeln ('<a href="http://www.industryselect.fr/menuHN.php?parAction=contact">Contacts</a>');
document.writeln ('&nbsp;-&nbsp;');
document.writeln ('<a href="http://www.industryselect.fr/Link_to_IS_FR.htm">Installer un lien IS</a>');
document.writeln ('&nbsp;-&nbsp;');
document.writeln ('<a href="http://www.industryselect.fr/menuHN.php?parAction=help">Conseils</a>');
document.writeln ('&nbsp;-&nbsp;');
document.writeln ('<a href="http://www.pei-france.com" target="_blank">Site PEI</a>');
document.writeln ('</div>');
}
// Menu Styles
function createStylesTxt(quant){

  document.writeln ('<style type="text/css">');
  document.writeln ('.menutxt {font-family:'+fontFace.split(",")+';font-size:'+fontSize.split(",")+';color:'+fontColour.split(",")+';font-weight:'+fontWeight.split(",")+'; text-decoration:'+fontDecoration.split(",")+'}');
document.writeln ('.menutxt a {font-family:'+fontFace.split(",")+';font-size:'+fontSize.split(",")+';color:'+fontColour.split(",")+';font-weight:'+fontWeight.split(",")+'; text-decoration:'+fontDecoration.split(",")+'}');
document.writeln ('.menutxt a:hover {font-family:'+fontFace.split(",")+';font-size:'+fontSize.split(",")+';color:'+fontColour.split(",")+';font-weight:'+fontWeight.split(",")+'; text-decoration:'+fontDecorationover.split(",")+'}');
  document.writeln ('</style>');
}
//-->
