function displaySubjectList( strSubject, strLevel ){

var strFontColor;
var strSubjectPhoto;
var strSubjectName;
var strSubjectURL;

strFontColor = '#408080';

if ((strLevel) == '') {strLevel = strLevel + ''}

document.write("<table width=100% border=0 cellspacing=0>");
document.write("<BR>");
document.write("  <tr>");
document.write("    <td valign=top><IMG SRC=/images/dingbat_down.gif BORDER=0></td>");
document.write("    <td valign=top>");
document.write("      新西兰留学<BR><BR>");

strSubjectName = '教育制度、<br>留学申请程序、<br>基本条件和留学生签证';
strSubjectURL = strLevel + 'EduSysAppProcBasRequire/page-EduSysAppProcBasRequire-Main.htm';
if ( strSubject == '教育制度留学申请程序基本条件和留学生签证'){
document.write("      <font color=" + strFontColor +  ">"+ strSubjectName +"</font><BR><BR>");
strSubjectPhoto = '/images/a11.jpg';
}
else{
document.write("      <a href="+ strSubjectURL +">"+ strSubjectName +"<IMG SRC=/images/blue_arrow.gif BORDER=0></a><BR><BR>");
}

strSubjectName = '大学简介和联系方式';
strSubjectURL = strLevel + 'UniverInstrContact/page-UniverInstrContact-Main.htm';
if ( strSubject == '大学简介和联系方式'){
document.write("      <font color=" + strFontColor +  ">"+ strSubjectName +"</font><BR><BR>");
strSubjectPhoto = '/images/a12.jpg';
}
else{
document.write("      <a href="+ strSubjectURL +">"+ strSubjectName +"<IMG SRC=/images/blue_arrow.gif BORDER=0></a><BR><BR>");
}

document.write("      <div align=left><hr width=122><img src=" + strSubjectPhoto + " border=1><hr width=122></div></p>");
document.write("      </td>");
document.write("  </tr>");
document.write("</table>");
}