		var modal_alert_box = new holiday_application_modal_block('calendar_window');
			
			function openBox(){
				
				var changeElement = document.getElementById('contactFrame');
				
				var browserName=navigator.appName;
	
				if(browserName == "Microsoft Internet Explorer"){
					
					changeElement.contentWindow.location = '/holidaySchedule/holiday_display_info.php?c=1064';
					
				}
				
				modal_alert_box.show();
				changeElement.style.visibility = "visible";
				
				return(true);
				
				}
				
				
			function hideBox(){
				
				var changeElement = document.getElementById('contactFrame');
				
				modal_alert_box.hide();
				changeElement.style.visibility = "hidden";
				changeElement.src = changeElement.src;
				
			}
