<!--
    var agt=navigator.userAgent.toLowerCase();
    var unix=0;
    if (navigator.appName == "Netscape") {
      if (agt.indexOf("x11")!=-1) {
         alert("\nYou are running a UNIX operating system with an\n"
		   + "X-Windows browser.\n\n"
		   + "There are no products currently on the market for X that \n"
           + "support the Sorenson Video Codec that we use on The Ad Critic. \n"
           + "You will be unable to view any of our commercials. \n"
           + "We will keep searching for one and will update the \n" 
           + "site when we do.\n\n"
           + "Let us know if you know of a UNIX Plugin that will display\n"
           + "QuickTime movies encoded in Sorenson Video Codec.\n"
           + "E-mail webmaster@adcritic.com.\n\n"
		   + "Please feel free to browse our site in the meantime.");
         unix=1;
      }  
      var num_of_plugins = navigator.plugins.length;
      var installed=0;
      if (unix!=1) {
         for (var i=0; i < num_of_plugins; i++) {
	        var plug=navigator.plugins[i].name.toLowerCase();
            if (plug.indexOf("quicktime")!=-1) {
               installed=1;
               i=num_of_plugins;
            } else {
               installed=0;
            }
         }
         if (installed==0) {
            window.open("/apple.html", "downloadqt",
            "width=336,height=450,statusbar=no,toolbar=no,scrollbars=no,navbar=no");    
         }
      }
    }

// -->
