function wp_html_TOC() {
var ML,now,m1,todayn,S1,U1,S2,U2,R;
ML=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
now=new Date();
m1=now.getMonth();
todayn=now.getDate();

S1=ML[m1]+" World Problems and Issues";
U1="http://www.edhelper.com/"+ML[m1]+"_WorldProblems_and_Issues.htm";

m1++;
if (m1>11) {
m1=0;
}
S2=ML[m1]+" World Problems and Issues";
U2="http://www.edhelper.com/"+ML[m1]+"_WorldProblems_and_Issues.htm";

m1++;
if (m1>11) {
m1=0;
}
S3=ML[m1]+" World Problems and Issues";
U3="http://www.edhelper.com/"+ML[m1]+"_WorldProblems_and_Issues.htm";

R="&nbsp;&nbsp;&nbsp;&nbsp;<a href=\""+U1+"\"><b>"+S1+"</b></a><BR><BR>"+
"&nbsp;&nbsp;&nbsp;&nbsp;<a href=\""+U2+"\"><b>"+S2+"</b></a><BR><BR>"+
"&nbsp;&nbsp;&nbsp;&nbsp;<a href=\""+U3+"\"><b>"+S3+"</b></a><BR><BR>";

R="<FONT color=#000099 face=\"Arial, Helvetica, sans-serif\" size=3>"+R+"</FONT>";
return R;
}
