var m_names = new Array("January", "February", "March", 
"April", "May", "June", "July", "August", "September", 
"October", "November", "December");

var d = new Date();
var curr_date = d.getDate();
var curr_month = d.getMonth();
var curr_year = d.getFullYear();

curr_month = curr_month + 1;

var sup = "";

// document.write("Current Month:" + curr_month + "<Br>");

if (curr_month == 12)
   {
   document.writeln('<p align="center"><font color=FFFFFF><b>December\'s Admissions Tip</b>: Complete and submit all applications at least one week prior to the deadline.</font></p>');
   }
else if (curr_month == 1)
   {
   document.writeln('<p align="center"><font color=FFFFFF><b>January\'s Admissions Tip</b>: Prepare for the SAT I by taking practice tests, assessing weaknesses, and studying to improve weak areas.</font></p>');
   }
else if (curr_month == 2)
   {
   document.writeln('<p align="center"><font color=FFFFFF><b>February\'s Admissions Tip</b>: Read at least one book outside of your class work that you could discuss with an interviewer.</font></p>');
   }
else if (curr_month == 3)
   {
   document.writeln('<p align="center"><font color=FFFFFF><b>March\'s Admissions Tip</b>: Immerse yourself in campus culture by visiting colleges of interest when they are in session.</font></p>');
   }
else if (curr_month == 4)
   {
   document.writeln('<p align="center"><font color=FFFFFF><b>April\'s Admissions Tip</b>: Schedule SAT II subject tests in the year that you take the class.</font></p>');
   }
else if (curr_month == 5)
   {
   document.writeln('<p align="center"><font color=FFFFFF><b>May\'s Admissions Tip</b>: Schedule the 5 core subjects (Math, Science, Language, English, Social Studies) every year possible in high school.</font></p>');
   }
else if (curr_month == 6)
   {
   document.writeln('<p align="center"><font color=FFFFFF><b>June\'s Admissions Tip</b>: Save copies of excellent graded HS papers from English or Social Science.</font></p>');
   }
else if (curr_month == 7)
   {
   document.writeln('<p align="center"><font color=FFFFFF><b>July\'s Admissions Tip</b>: Work on college admissions essays to lessen pressure in the fall.</font></p>');
}
else if (curr_month == 8)
   {
   document.writeln('<p align="center"><font color=FFFFFF><b>August\'s Admissions Tip</b>: Write observations from your college visits in a journal so as not to mix up the different colleges</font></p>');
}
else if (curr_month == 9)
   {
   document.writeln('<p align="center"><font color=FFFFFF><b>September\'s Admissions Tip</b>: Schedule interviews at colleges on your list that recommend it.  Come prepared to ask interesting questions.</font></p>');
}
else if (curr_month == 10)
   {
   document.writeln('<p align="center"><font color=FFFFFF><b>October\'s Admissions Tip</b>: Contact colleges that interest you for more information including special visitor days, scholarships etc.</font></p>');
}
else if (curr_month == 11)
   {
   document.writeln('<p align="center"><font color=FFFFFF><b>November\'s Admissions Tip</b>: Prepare a resume of your activities and work experiences for later use in applications.</font></p>');
   }

//-->