 // JEL - JavaScript ESUITE Libraries
 // by Enrico Sorcinelli - webmaster@sestante.net
 // (C) Copyright 1999 - SESTANTE Media and Network Solutions

 // Sound Features Variables
 var NSsound = navigator.plugins && navigator.plugins["LiveAudio"];
 var IEsound = navigator.plugins && document.all;
 var audioEnabled = NSsound || IEsound;

 //if (!audioEnabled) alert("Your browser cannot play sound files.");
 //if (!navigator.javaEnabled()) alert("Your browser is not Java-enabled. Please edit preferences.");

 // Check Browser 
 bName = navigator.appName;
 bVer = parseInt(navigator.appVersion);
 if ( (bName == "Netscape" && bVer >= 3) || (bName == "Microsoft Internet Explorer" && bVer >= 3) ) ver = "n3";
    else if (bName == "Netscape" && bVer == 2) ver = "n2"; 
    else if (bName == "Microsoft Internet Explorer" && bVer >= 2) ver = "e3";
