document.writeln("<script language=JavaScript>")
document.writeln("                window.onload = onLoad;")
document.writeln("")
document.writeln("                function onLoad()")
document.writeln("                {")
document.writeln("                    var sa = document.getElementById(\"chkViewAll\");")
document.writeln("                    if(typeof(IsPrinterFriendly) == \"undefined\") sa.checked = false;")
document.writeln("                    else sa.checked = true;")
document.writeln("                }")
document.writeln("")
document.writeln("                function toggleAll()")
document.writeln("                {")
document.writeln("                    var sa = document.getElementById(\"chkViewAll\");")
document.writeln("                    var ch = sa.checked;")
document.writeln("                    toggleQuestions(ch);")
document.writeln("                }")
document.writeln("")
document.writeln("                function toggleQuestions(checked)")
document.writeln("                {")
document.writeln("                    var secCount = 1;")
document.writeln("                    var faqEntryCount = 10;")
document.writeln("                    for(var j=1; j<=secCount; j++)")
document.writeln("                    {")
document.writeln("                        for (var i=1; i<=faqEntryCount; i++)")
document.writeln("                        {")
document.writeln("	                        var title = document.getElementById(\"title\" + j + i);")
document.writeln("                            if(checked == true)")
document.writeln("                                expandQuestion(\"title\" + j + i, \"question\" + j +i, \"answer\" + j + i);")
document.writeln("                            else")
document.writeln("                                collapseQuestion(\"title\" + j + i, \"question\" + j +i, \"answer\" + j + i);")
document.writeln("                        }")
document.writeln("                    }")
document.writeln("                    if(checked == false)")
document.writeln("                    {")
document.writeln("                      var sa = document.getElementById(\"chkViewAll\");")
document.writeln("	                    sa.checked = false;")
document.writeln("                    }")
document.writeln("                }")
document.writeln("")
document.writeln("                function toggleQuestion(tName, qName, aName)")
document.writeln("                {")
document.writeln("                    var title = document.getElementById(tName);")
document.writeln("                    if (title == null) return;")
document.writeln("                    var ans = document.getElementById(aName);")
document.writeln("                    if (ans == null) return;")
document.writeln("                    var que = document.getElementById(qName);")
document.writeln("                    if (ans.style.display == '')")
document.writeln("                    {")
document.writeln("                      if (que != null) que.style.display = 'none';")
document.writeln("	                    ans.style.display = 'none';")
document.writeln("	                    var sa = document.getElementById(\"chkViewAll\");")
document.writeln("	                    sa.checked = false;")
document.writeln("                    }")
document.writeln("                    else")
document.writeln("                    {")
document.writeln("                        if (que != null) que.style.display = '';")
document.writeln("	                    ans.style.display = '';")
document.writeln("                    }")
document.writeln("                }")
document.writeln("")
document.writeln("                function expandQuestion(tName, qName, aName)")
document.writeln("                {")
document.writeln("                    var title = document.getElementById(tName);")
document.writeln("                    if (title == null) return;")
document.writeln("                    var ans = document.getElementById(aName);")
document.writeln("                    if (ans == null) return;")
document.writeln("                    var que = document.getElementById(qName);")
document.writeln("                    if (que != null) que.style.display = '';")
document.writeln("                    ans.style.display = '';")
document.writeln("                }")
document.writeln("")
document.writeln("                function collapseQuestion(tName, qName, aName)")
document.writeln("                {")
document.writeln("                    var title = document.getElementById(tName);")
document.writeln("                    if (title == null) return;")
document.writeln("                    var ans = document.getElementById(aName);")
document.writeln("                    if (ans == null) return;")
document.writeln("                    var que = document.getElementById(qName);")
document.writeln("                    if (que != null) que.style.display = 'none';")
document.writeln("                    ans.style.display = 'none';")
document.writeln("                }")
document.writeln("            </script>")