/*<[CDATA[*/

  function init() {
    return;
    var links = document.getElementById( 'topmenu' ).getElementsByTagName( 'a' );
    links[0].style.backgroundColor = '#A0CF67';
    links[1].style.backgroundColor = '#C4E0A1';
    links[2].style.backgroundColor = '#00718F';
    links[3].style.backgroundColor = '#B30337';
    links[4].style.backgroundColor = '#F7F0B5';
    links[5].style.backgroundColor = '#006C68';
  }

  function changeFontSize( size ) {
    if(document.getElementById("content"))
	{
    document.getElementById("content").style.fontSize = size;
	}
	if(document.getElementById("rightcontent"))
	{
	document.getElementById("rightcontent").style.fontSize = size;
	}
	if(document.getElementById("left_content"))
	{
	document.getElementById("left_content").style.fontSize = size;
	}
  }

  function calcHeight( objId ) {
  objId.height = 600;
  return;
    //find the height of the internal page
    var the_height = objId.contentWindow.document.body.scrollHeight;

    //change the height of the iframe
    objId.height = the_height + 30;
  }

/*]]>*/
