<!--
 function open_window(file, name, width, height, scrbar)
 { if(scrbar) window.open(file,name,"toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=yes,resizable=0,width=" + width + ",height=" + height);
   else window.open(file,name,"toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=no,resizable=0,width=" + width + ",height=" + height);
 }
 
 function reload_opener()
 { opener.document.location.href = opener.document.location.href;
 }

 function print_title(text, width)
  { var d1 = 8;
    var d3 = 9;
    var d2 = width - d1 - d2;
    document.open();
    document.writeln('<table cellspacing="0" cellpadding="0" border="0" background="/img/lblpnt.gif" width="' + width + '">' +
                     ' <tr>' + 
                     '  <td rowspan="3" width="' + d1  + '"><img src="/img/lbrd.gif"></td>' + 
                     '  <td width="' + d2  + '" background="/img/blpnt.gif"><img src="/img/transp.gif" width="1" height="1"></td>' +
                     '  <td rowspan="3" width="' + d3  + '"><img src="/img/rbrd.gif"></td>' +
                     ' </tr>' +
                     ' <tr>' +
                     '  <td><p class="brdttl">' + text + '</p></td>' +
                     ' </tr>' +
                     ' <tr>' + 
                     '  <td background="/img/bbrd.gif"><img src="/img/transp.gif" width="1" height="9"></td>' +
                     ' </tr>' +
                     '</table>');
    document.close();
  } 

//By George Chiang (www.javascriptkit.com) JavaScript site.
img1=new Image()
img1.src="/img/fold.gif"
img2=new Image()
img2.src="/img/open.gif"
ns6_index=0

function detectAgent() {
  with (navigator) {
       var tempAgent = userAgent;
	   var tempName = appName;
	   this.plainAgentStr = userAgent;
	   this.plainNameStr = appName;
	   this.plainVersionStr = appVersion;
	   if (tempAgent.indexOf('Opera')>=0) {
	      this.name = "Opera";
		  this.shortName = "OPR";
		  var tempVer = tempAgent.substring(tempAgent.indexOf("Opera") + 6, tempAgent.length);
		  this.version = tempVer.substring(0, tempVer.indexOf(" "));
          this.minorVer = this.version.substring(tempVer.indexOf(".") + 1, tempVer.length);
          this.language = tempAgent.substring(tempAgent.indexOf("[") + 1, tempAgent.indexOf("]"));
		  
	   }
       else {
	      if (tempAgent.indexOf('MSIE')>=0) {
		     this.name = "Internet Explorer";
			 this.shortName = "EXP";
             var tempVer = tempAgent.substring(tempAgent.indexOf("MSIE") + 5, tempAgent.length);
             this.version = tempVer.substring(0, tempVer.indexOf(";"));
             this.minorVer = this.version.substring(tempVer.indexOf(".") + 1, tempVer.length);
             this.language = browserLanguage;
		  }
		  else {
		    if (tempName.indexOf('Netscape')>=0) {
			   this.name = "Netscape Navigator";
			   this.shortName = "NAV"
			   this.minorVer = appVersion.substring(appVersion.indexOf(".") + 1, appVersion.indexOf(" "));
               this.language = tempAgent.substring(tempAgent.indexOf("[") +1, tempAgent.indexOf("]"));
               this.version = appVersion.substring(0, appVersion.indexOf(" "));			   
			}
			else {
			   this.name = "Unknown";
			   this.shortName = "UNK"
			}
		  }
	   }
  }
}

var br = new detectAgent();
var NN = (br.shortName == "NAV");
var IE = (br.shortName == "EXP");
var OP = (br.shortName == "OPR");

function showbanner() {
 if(IE) {
   document.all['banner2006'].filters.item(0).Apply()
   document.all['banner2006'].style.visibility=""
   document.all['banner2006'].filters.item(0).Play() 
 }
 else if(NN) {
   document.layers['banner2006'].visibility = "show";
 }
 else if(OP) {
   document.all['banner2006'].style.visibility = "visible";
 }
}

function hidebanner() {
 if(IE) {
   document.all['banner2006'].style.visibility="hidden"
 }
 else if(NN) {
   document.layers['banner2006'].visibility = "hide";
 }
 else if(OP) {
   document.all['banner2006'].style.visibility = "hidden";
 }
}

function change(e){

  if(!document.all&&!document.getElementById)
    return

  if (!document.all&&document.getElementById)
    ns6_index=1

  var source=document.getElementById&&!document.all? e.target:event.srcElement

  if (source.className=="folding"){
    var source2=document.getElementById&&!document.all? source.parentNode.childNodes:source.parentElement.all
    if (source2[2+ns6_index].style.display=="none"){
      source2[0].src="/img/open.gif"
      source2[2+ns6_index].style.display=''
    }
    else{
      source2[0].src="/img/fold.gif"
      source2[2+ns6_index].style.display="none"
    }
  }
}
document.onclick=change

// -->