function getDay (add_some)

{

  theDate= new Date();
  
  var day = theDate.getSeconds();

  day = day / 5;
  
  
  day = parseInt (day);
    
  if (day < 28)
  
  {
  
   day = day + add_some;
   
  }
  
  else
  
  {
  
    day = 28;
  
  }
  
  if (day > 15)
  
  {
  
   day = 1;
  
  }
  
  if (day < 1)
  
  {
  
   day = 10;
  
  }

  
  document.writeln("<IMG SRC=\"images/top" + day + ".gif\">");

}  

function footer ()

{

  document.writeln("<TABLE CELLPADDING=0 CELLSPACING=0 HEIGHT=171 border=0><TD BACKGROUND='images/bottom_background.jpg' WIDTH=610 VALIGN=TOP ALIGN=CENTER>\n\n");

  document.writeln("<BR><BR><BR>\n\n");

  document.writeln("<FONT COLOR=gray>\n\n");

  document.writeln("MSC Mission Office<BR>\n\n");
  
  document.writeln("PO BOX 177 Kensington NSW 1465<BR>\n\n");
  
  document.writeln("Phone (02) 9697 0983 Fax (02) 9697 0984\n\n");
  
  document.writeln("</font>\n\n");
  
  document.writeln("</td><TD>&nbsp;</td></TR></TABLE>\n\n");
  
  document.writeln("&nbsp;\n\n");

  document.writeln("<BR><BR>\n\n");

  document.writeln("<FONT SIZE=2 COLOR=#CCCCCC face=arial>Website Designed By <a href='http:/" +"/www.astragalaxy.com' target='_blank'>AstraGalaxy</a></font>\n\n");

  document.writeln("</TD></TR></TABLE>\n\n");
  
}