var isSmall = 0;
function resizeContent(node) {
  var browserName = navigator.appName;
  var browserVersion = parseInt(navigator.appVersion);

  if (isSmall == 0) {
    isSmall = 1;

    if (browserName == "Microsoft Internet Explorer") {
      document.getElementById('resizeContent').style.setAttribute('display','block');
      document.getElementById('resizeContent').style.setAttribute('width','575px');
      document.getElementById('resizeContent').style.setAttribute('height','35px');
      document.getElementById('resizeContent').style.setAttribute('overflow','hidden');
    } else {
      document.getElementById('resizeContent').setAttribute('style','display: block; width: 575px; height: 35px; overflow: hidden;');
    }

    document.getElementById('resizeButton').firstChild.nodeValue="[ + ]";

  }
  else {
    isSmall = 0;

    if (browserName == "Microsoft Internet Explorer") {
      document.getElementById('resizeContent').style.setAttribute('display','block');
      document.getElementById('resizeContent').style.setAttribute('width','575px');
      document.getElementById('resizeContent').style.setAttribute('height','auto');
    } else {
      document.getElementById('resizeContent').setAttribute('style','display: block; width: 575px; height: auto;');
    }

    document.getElementById('resizeButton').firstChild.nodeValue="[ - ]";    
  }

  return false;
}
