// ..................................................................

function Browser() 
{                                         
          this.dom = document.getElementById?1:0;
          this.ie4 = (document.all && !this.dom)?1:0;
          this.ns4 = (document.layers && !this.dom)?1:0;
          this.ns6 = (this.dom && !document.all)?1:0;
          this.ie5 = (this.dom && document.all)?1:0;
          this.ok = this.dom || this.ie4 || this.ns4;
          this.platform = navigator.platform;

          this.ie = (this.ie5) ? 1 : 0;
          this.ns = (this.ns6 || this.name == "Netscape") ? 1 : 0;
          this.opera = (window.opera) ? 1 : 0;

          this.name = navigator.appName;
          this.version = parseFloat(navigator.appVersion);
          if (!this.opera && this.name == "Microsoft Internet Explorer" && navigator.userAgent.indexOf("MSIE 6.0") != -1)
          {
                  this.version = 6;
          }
          else if (!this.opera && this.name == "Microsoft Internet Explorer" && navigator.userAgent.indexOf("MSIE 5.5") != -1)
          {
                  this.version = 5.5;
          }
	  else if (this.opera && navigator.userAgent.indexOf("Opera 7") != -1)
          {
                  this.version = 7;
          }
          else if (this.opera && navigator.userAgent.indexOf("Opera/6") != -1)
          {
                  this.version = 6;
          }

          this.ie6 = (this.ie && this.version > 5) ? true : false;
          this.png = (this.ie6 || this.opera) ? true : false;
}

// ..................................................................

var browser = new Browser();
var version = parseInt(browser.version);
/* if (browser.opera && version <= 6)
  document.write('<link type=\"text/css\" rel=\"stylesheet\" media=\"all\" type=\"text/css\" href=\"/styles_opera6{if $smarty.get.view == "print"}_print{/if}.css\" />');
else if (browser.opera && version <= 8)
  document.write('<link type=\"text/css\" rel=\"stylesheet\" media=\"all\" type=\"text/css\" href=\"/styles_opera8{if $smarty.get.view == "print"}_print{/if}.css\" />');
else
if (browser.ns)
  document.write('<link type=\"text/css\" rel=\"stylesheet\" media=\"all\" type=\"text/css\" href=\"styles_netscape.css\" />');
 */

// ..................................................................