
function dw(theText) {
    document.writeln(theText)
}

function maintenance() {
  //remember that the JavaScript value for the month begins with 0. Jan is 0, Feb is 1, Dec is 11 etc
  today = new Date()
  if ((today.getDate() <= 17) && (today.getMonth() == 6) && (today.getYear() == 2005)) {
      dw('Due to network upgrades, there may be interruptions to Hemscott services on Saturday 16/07/05 between 9pm and midnight. Hemscott apologise for any inconvenience this may cause.');
  }
}


function maintenancePremium() {
  //remember that the JavaScript value for the month begins with 0. Jan is 0, Feb is 1, Dec is 11 etc
  today = new Date()
  
  if ((today.getDate() <= 17) && (today.getMonth() == 6) && (today.getYear() == 2005)) {
    dw('<tr valign="top">');
    dw('<td colspan="5" height="20">');
    dw('<table width="100%" border="0" cellspacing="0" cellpadding="2">');
    dw('<tr valign="middle">');
    dw('<td height="20" colspan="3" class="tableheader" style="padding-left:2px">Notice</td>');
    dw('</tr>');
    dw('<tr>');
    dw('<td class="tabledata" valign="top">Due to network upgrades, there may be interruptions to Hemscott services on Saturday 16/07/05 between 9pm and midnight. Hemscott apologise for any inconvenience this may cause.</td>');
    dw('</tr>');
    dw('</table>');
    dw('</td>');
    dw('</tr>');        
    dw('<tr valign="top">');
    dw('<td colspan="5">&#160;</td>');
    dw('</tr>');
  }
}  
  
  

