// JavaScript Document
document.writeln("<script type=\"text/javascript\">");
document.writeln("function nTabs(thisObj,Num){");
document.writeln("if(thisObj.className == \"active\")return;");
document.writeln("var tabObj = thisObj.parentNode.id;");
document.writeln("var tabList = document.getElementById(tabObj).getElementsByTagName(\"li\");");
document.writeln("for(i=0; i <tabList.length; i++)");
document.writeln("{");
document.writeln("  if (i == Num)");
document.writeln("  {");
document.writeln("   thisObj.className = \"active\"; ");
document.writeln("      document.getElementById(tabObj+\"_Content\"+i).style.display = \"block\";");
document.writeln("  }else{");
document.writeln("   tabList[i].className = \"normal\"; ");
document.writeln("   document.getElementById(tabObj+\"_Content\"+i).style.display = \"none\";");
document.writeln("  }");
document.writeln("} ");
document.writeln("}");
document.writeln("</script>");
