function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function adjustLayout()
{
  // Get natural heights
  var cHeight = xHeight("col1content");
  var lHeight = xHeight("col2content");
  var rHeight = xHeight("col3content");

  // Find the maximum height
  var maxHeight =
    Math.max(cHeight, Math.max(lHeight, rHeight));

  // Assign maximum height to all columns
  xHeight("col1content", maxHeight);
  xHeight("col2content", maxHeight);
  xHeight("col3content", maxHeight);

  // Show the footer
  xShow("footer");
}

window.onload = function()
{
  xAddEventListener(window, "resize", adjustLayout, false);
  adjustLayout();
}

function toggleQA(objId)
{
	questionObj = document.getElementById("q" + objId);
	//alert(questionObj);
	answerObj = document.getElementById("a" + objId);
	//alert(answerObj);	
	
	if (answerObj.style.display == "none") 
	{
		answerObj.style.display = "";
		questionObj.className = "question open";
	}
	else 
	{
		answerObj.style.display = "none";
		questionObj.className = "question close";
	}

}
