// white paper JavaScript

/***********************************************
* Switch Menu script- by Martial B of http://getElementById.com/
* Modified by Dynamic Drive for format & NS4/IE4 compatibility
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

function showMenu(obj1,obj2,obj3){
	if (document.getElementById) {
		//show the "abstract" class
		var el1 = document.getElementById(obj1);
		el1.style.display = "block";
		//hide the "show" link
		var el2 = document.getElementById(obj2);
		el2.style.display = "none";
		//show the "hide" link
		var el3 = document.getElementById(obj3);
		el3.style.display = "inline";
	} //close if
} //close function

function hideMenu(obj1,obj2,obj3){
	if (document.getElementById) {
		//hide the "abstract" class
		var el1 = document.getElementById(obj1);
		el1.style.display = "none";
		//show the "show" link
		var el2 = document.getElementById(obj2);
		el2.style.display = "inline";
		//hide the "hide" link
		var el3 = document.getElementById(obj3);
		el3.style.display = "none";
	} //close if
} //close function
