<!-- Paste this code into an external JavaScript file named: expandCollapse.js  -->

/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Ultimater, Mr J :: http://www.webdeveloper.com/forum/showthread.php?t=77389 */

function printIt()
{
	var objWindow=window.open("index-2print.html","Print","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=800,height=800" );
	//objWindow.focus();
	//objWindow.print();
	//return true;
}

function printItF()
{
	var objWindow=window.open("index-2print-f.html","Print","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=800,height=800" );
	//objWindow.focus();
	//objWindow.print();
	//return true;
}

function toggleMeOne(a){
  var e=document.getElementById(a);
  
  //if(!e)return true;
  if(e.style.display=="none"){
    e.style.display="block"
	
  } else {
    e.style.display="none"
	
  }
  return true;
}

function toggleMe(a,b){
  var e=document.getElementById(a);
  var f=document.getElementById(b);
  if(!e)return true;
  if(e.style.display=="none"){
    e.style.display="block"
	f.style.display="none"
  } else {
    e.style.display="none"
	f.style.display="block"
  }
  return true;
}

function toggleMeMore(a,b,c,d){
  var e=document.getElementById(a);
  var f1=document.getElementById(b);
  var f2=document.getElementById(c);
  var f3=document.getElementById(d);
  if(!e)return true;
  if(e.style.display=="none"){
    e.style.display="block"
	f1.style.display="none"
	f2.style.display="none"
	f3.style.display="none"
  } else {
    e.style.display="none"
	f1.style.display="block"
	f2.style.display="block"
	f3.style.display="block"
  }
  return true;
}

