var x = new Array();
var j = 14;
x[j] =  "Java";
x[++j] =  "Java Servlets";
x[++j] =  "JSP";
x[++j] =  "EJB";
x[++j] =  "JDBC";
x[++j] =  "ActionScript";
x[++j] =  "JavaFX";
x[++j] =  "C";
x[++j] =  "CPP";
x[++j] =  "VB";
x[++j] =  "VBScript";
x[++j] =  "VBA";
x[++j] =  "VB.Net";
x[++j] =  "C#";
x[++j] =  "ABAP";
x[++j] =  "Basic";
x[++j] =  "SmallTalk";
x[++j] =  "Python";
x[++j] =  "Groovy";
x[++j] =  "Ruby";
x[++j] =  "Cobol";
x[++j] =  "Fortran";
x[++j] =  "Delphi";
x[++j] =  "Pascal";
x[++j] =  "PowerBuilder";
x[++j] =  "RPG";
x[++j] =  "SQL";
x[++j] =  "PLSQL";
x[++j] =  "TransactSQL";
x[++j] =  "HTML";
x[++j] =  "ASP";
x[++j] =  "CGI";
x[++j] =  "JavaScript";
x[++j] =  "Perl";
x[++j] =  "PHP";
x[++j] =  "ColdFussion";
x[++j] =  "XBase";
x[++j] =  "XML";
x[++j] =  "Other1";
x[++j] =  "Other2";
x[++j] =  "Other3";

function showAll(){
  var i;
  var ii;
  for(i=14;i<x.length;i++){
    var name = + (i*10) + "_" + x[i];
    document.write("<tr>");
    document.write("<td nowrap>");
    document.write(x[i]);
    if(x[i].substring(0,5)=="Other") document.write("&nbsp;<input name=\"" + name + "_Other\">");
    document.write("</td>");
    for(ii=0;ii<5;ii++){
      document.write("<th>");
      var checked = "";
      if(ii==0) checked = " checked=\"true\"";
      document.write("<input " + checked + " name=\"" + name + "\" value=\"" + ii + "\" type=\"radio\">");
      document.write("</th>");
    }
    document.write("</tr>");
  }
}