var toggleFaqContent = function (objname)
{
  //to use this have to have display:xxxx (eg none) inline
  if(document.getElementById(objname).style.display == "none")
    Effect.BlindDown(objname);
  else
    Effect.BlindUp(objname);
}
