var currentTime = new Date();

var month = currentTime.getMonth() + 1;
var day = currentTime.getDate();
//var year = currentTime.getFullYear();

var date = month + "" + day;

if(month == 11)
{
 var clsd = '<font color="#ff0000"><b>' +
	 		'<br><br>12/24 - Closed' +
	 		'<br>12/25 - Closed' +
 			'<br><br>12/26 - Closed' +
 			'<br><br>12/28 - 8 am - 5:30 pm';
	 		'</b></font>';
}
else
{
 var clsd = '';
}

with(document)
{
 write("<table width='195' align='left' cellpadding='0' cellspacing='0' border='0'>");
 write("<tr>");
 write("<td class='title2'><br><u>Library Hours</u></td>");
 write("</tr>");
 write("<tr>");
 write("<td class='right'><br>");
 
 
 if(month >= 4 && month <= 8)
 {
  write("Mondays: 8 am - 8 pm<br>Tues. - Wed.: 9 am - 8 pm<br>Thursday: 12 N - 8 pm<br>Friday: 12 N - 6 pm<br>Sat. - Sun.: Closed");
 }
 else
 {
  write("Mondays: 8 am - 8 pm<br>Tuesday: 9 am - 8 pm<br>Wed. - Thurs.: 12N - 8 pm<br>Friday: 12 N - 6 pm<br>Saturday: 9 am - 12 N<br>Sunday: Closed");
 }

 write("</td>");
 write("</tr>");
 write("<tr>");
 write("<td class='title2'><br><br><u>Contact Us</u></td>");
 write("</tr>");
 write("<tr>");
 write("<td class='text7'><br><b>Brillion Public Libary</b>" +
 		"<br>326 N. Main Street" +
 		"<br>Brillion, WI 54110" +
 		"<br><br><b>Phone:</b> (920) 756-3215" +
 		"<br><br><a href='mailto: brref@esls.lib.wi.us'>brref@esls.lib.wi.us</a>" +
 		"<br><br><br></td>");
 write("</tr>");
 /*write("<tr>");
 write("<td class='text'<div id='wx_module_6166'><br><a href='http://www.weather.com/weather/local/54110'>Brillion Weather Forecast, WI (54110)</a></div>");
 */

 /* Locations can be edited manually by updating 'wx_locID' below.  Please also update */
 /* the location name and link in the above div (wx_module) to reflect any changes made. */
 var wx_locID = '54110';

 /* If you are editing locations manually and are adding multiple modules to one page, each */
 /* module must have a unique div id.  Please append a unique # to the div above, as well */
 /* as the one referenced just below.  If you use the builder to create individual modules  */
 /* you will not need to edit these parameters. */
 var wx_targetDiv = 'wx_module_6166';

 /* Please do not change the configuration value [wx_config] manually - your module */
 /* will no longer function if you do.  If at any time you wish to modify this */
 /* configuration please use the graphical configuration tool found at */
 /* https://registration.weather.com/ursa/wow/step2 */
 var wx_config='SZ=180x150*WX=FHW*LNK=SSNL*UNT=F*BGI=seasonal1*MAP=null|null*DN=http';

 //write('<scr'+'ipt src="'+document.location.protocol+'//wow.weather.com/weather/wow/module/'+wx_locID+'?config='+wx_config+'&proto='+document.location.protocol+'&target='+wx_targetDiv+'"></scr'+'ipt>');
 //write("</td>");
 //write("</tr>");
 write("</table>");
}