﻿
var weburl = document.location.href;
var noteDate = new Date();
var curDate = noteDate.getDate();
var curMonth = noteDate.getMonth() + 1;
var curYear = noteDate.getFullYear();
var curUTCHour = noteDate.getUTCHours(); // UTC 10 = 6am ET
var divdisplay = "none";


var mainTime = "08:00 PM Saturday, Feb. 4<sup>th</sup> - 01:05 AM, Sunday, Feb. 5<sup>th</sup>";

if ((curDate >= 2 && curMonth == 2) && (curDate <= 5 && curMonth == 2) ) {
    divdisplay = "none";
}
else {
    divdisplay = "none";
}
 //divdisplay = "";

if (weburl.indexOf("galleryofguns") != -1)  {
        document.write('<div style="display:'+divdisplay+'; font-size:10pt;font-family:Verdana;' +
            'margin-left:0px;margin-bottom:3px;width: 660px;height: 85px;' +
	        'background-color: #ffffff;	text-align: center;	border: solid 1px white;	color:#C90000;">' +
	        '<b>**** IMPORTANT NOTICE ****</b><br />' +
	        'We will be undergoing scheduled maintenance at<br />' + mainTime + ' (Eastern Time).<br />' +
	        'Some pages will not be accessible during this time.<br />We apologize for any inconveniences.' +
	        '</div>');
}
else if (weburl.indexOf("www11.davidsonsinc") != -1 || weburl.indexOf("dev.davidsonsinc") != -1) { // www11/dev master page
        document.write('<div style="display:'+divdisplay+'; font-size:10pt;font-family:Verdana;' +
            'margin-left:0px;margin-bottom:3px;width:650px;height:85px;' +
	        'background-color:#ffffff;text-align:center;border:solid 1px #660000;color:#C90000;">' +
	        '<b>**** IMPORTANT NOTICE ****</b><br />' +
	        'We will be undergoing scheduled maintenance at<br> ' + mainTime + ' (Eastern Time).<br />' +
	        'Some pages will not be accessible during this time.<br>We apologize for any inconveniences.' +
	        '</div>');
}
else { //old dol site
      document.write('<div style="display:'+divdisplay+';color:#cc0000;font-size:9pt;font-family:verdana; ' +
            'padding:5px; margin-top:5px;margin-bottom:5px;width:420px;border:solid 5px #aaaaaa;">' +
			'<b>**** IMPORTANT NOTICE ****</b><br />' +
	        'We will be undergoing scheduled maintenance at<br />' + mainTime + ' (Eastern Time).<br />' +
			'Some pages will not be accessible during this time.<br>'+
			'We apologize for any inconveniences.</b>'+
			'</div>');
}
		


