<!-- //
//This delivers timely materials based on the month

var months=new Array(13);
months[1]="1";
months[2]="2";
months[3]="3";
months[4]="4";
months[5]="5";
months[6]="6";
months[7]="7";
months[8]="8";
months[9]="9";
months[10]="10";
months[11]="11";
months[12]="12";
var time=new Date();
var tmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    
year = year + 1900; 

if (tmonth == 1){



}
else if (tmonth == 2){


}

else if (tmonth == 3){


}

else if (tmonth == 4){

}

else if (tmonth == 5){



}

else if (tmonth == 6){


}

else if (tmonth == 7){



}

else if (tmonth == 8){




}

else if (tmonth == 9){



}

else if (tmonth == 10){



}

else if (tmonth == 11){



}
else if (tmonth == 12){



}

else { document.write("No Data IN This Feed")
}

// --- End Script -->

