function ManageTabPanelDisplay() {
//
// Between the parenthesis, list the id's of the div's that 
//     will be affected when tabs are clicked. List in any 
//     order. Put the id's in single quotes (apostrophes) 
//     and separate them with a comma -- all one line.
//
var idlist = new Array('tab1focus','tab2focus','tab3focus','tab4focus','tab1ready','tab2ready','tab3ready','tab4ready','content1','content2','content3','content4');

// No other customizations are necessary.
if(arguments.length < 1) { return; }
for(var i = 0; i < idlist.length; i++) {
   var block = false;
   for(var ii = 0; ii < arguments.length; ii++) {
      if(idlist[i] == arguments[ii]) {
         block = true;
         break;
         }
      }
   if(block) { document.getElementById(idlist[i]).style.display = "block"; }
   else { document.getElementById(idlist[i]).style.display = "none"; }
   }
}

function ManageTabsPanelDisplay() {
	//
	// Between the parenthesis, list the id's of the div's that 
//	     will be affected when tabs are clicked. List in any 
//	     order. Put the id's in single quotes (apostrophes) 
//	     and separate them with a comma -- all one line.
	//
	var idlist = new Array('tabs1focus','tabs2focus','tabs3focus','tabs4focus','tabs1ready','tabs2ready','tabs3ready','tabs4ready','scontent1','scontent2','scontent3','scontent4');

	// No other customizations are necessary.
	if(arguments.length < 1) { return; }
	for(var i = 0; i < idlist.length; i++) {
	   var block = false;
	   for(var ii = 0; ii < arguments.length; ii++) {
	      if(idlist[i] == arguments[ii]) {
	         block = true;
	         break;
	         }
	      }
	   if(block) { document.getElementById(idlist[i]).style.display = "block"; }
	   else { document.getElementById(idlist[i]).style.display = "none"; }
	   }
	}

function ManageTabzPanelDisplay() {
	//
	// Between the parenthesis, list the id's of the div's that 
//	     will be affected when tabs are clicked. List in any 
//	     order. Put the id's in single quotes (apostrophes) 
//	     and separate them with a comma -- all one line.
	//
	var idlist = new Array('tabz1focus','tabz2focus','tabz3focus','tabz4focus','tabz1ready','tabz2ready','tabz3ready','tabz4ready','tabzcontent1','tabzcontent2','tabzcontent3','tabzcontent4');

	// No other customizations are necessary.
	if(arguments.length < 1) { return; }
	for(var i = 0; i < idlist.length; i++) {
	   var block = false;
	   for(var ii = 0; ii < arguments.length; ii++) {
	      if(idlist[i] == arguments[ii]) {
	         block = true;
	         break;
	         }
	      }
	   if(block) { document.getElementById(idlist[i]).style.display = "block"; }
	   else { document.getElementById(idlist[i]).style.display = "none"; }
	   }
	}

//-->