// JavaScript Document


<!-- flooble Expandable Content header start -->
// Expandable content script from flooble.com.
// For more information please visit:
//   http://www.flooble.com/scripts/expand.php
// Copyright 2002 Animus Pactum Consulting Inc.
//----------------------------------------------
var ie4 = false;
 
if(document.all) { 
	ie4 = true;
}

function getObject(id) { 
	if (ie4) { 
		return document.all[id];
	} else { 
		return document.getElementById(id);
	}
}

// Check the browser...we're looking for ie/win
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;    // true if we're on ie
var display_style = '';
if (isIE) {
	display_style = 'block';
}

function toggle(link, divId, state) { 
  //var lText = link.innerHTML;
  var d = getObject(divId);
  
  if (state == 's') { 
    //link.innerHTML = '-';
    d.style.display = display_style;
  } else { 
    //link.innerHTML = '+';
    d.style.display = 'none';
  }
}
<!-- flooble Expandable Content header end   -->
