function SideBar(Link) {
var now = new Date();
var digit = now.getMinutes() % 10;

  document.write('<CENTER>');
  if (Link == null) {
     document.write('<img src="tmlogo_blue.gif" border="0" width="222" height="193" alt="" align="middle" alt="Toastmasters Logo">');
  }
  else {
     document.write('<A HREF="' + Link + '">'
     + '  <img src="tmlogo_blue.gif" border="0" width="222" height="193" alt="" align="middle" alt="Toastmasters Logo">'
     + '  </A>');
  }
  document.write(' </CENTER>'
  + ' <BR><B>'
  + ' <FONT COLOR="#FFFFFF" SIZE="+3">ONE STATE STREET<BR></FONT>'
  + ' <FONT COLOR="#FFFFFF" SIZE="+2">TOASTMASTERS<BR></FONT>'
  + ' <FONT COLOR="#FFFFFF" SIZE="+3">Club &#160;#6613</FONT>'
  + ' </B><br>'
  + ' <FONT COLOR="#FFFFFF" SIZE="+1">Making Effective Communications a Reality since September 10, 1990</FONT>'
  + ' <HR>'
  + ' <FONT COLOR="#FFFFFF" SIZE="+2">We Meet:<BR>'
  + ' Every Wednesday,<BR>From 11:45<BR>&#160;&#160;&#160;&#160;&#160;&#160;to 12:50</FONT>'
  + ' <HR>'
  + ' <FONT COLOR="#FFFFFF" SIZE="+2">Meeting Location:<BR>'
  + ' &nbsp;City-View Room,<br>&nbsp;Floor 5</FONT><BR>'
  + ' <HR>'
  + ' <FONT COLOR="#FFFFFF" SIZE="+2"> Address:<BR>'
  + ' One State Street Hartford, CT.</FONT>'
  + ' <HR>'
  + ' <FONT COLOR="#FFFFFF" SIZE="+2"> Contact and Information Line<BR>'
  + ' 860.722.5209</FONT><HR><Table><Tr valign="top"><td>');
	
	switch (digit) {
    case 1: 
    case 3: 
    case 5: 
    case 7: result = 'BadSpeech'; break;
    case 2:
    case 6: result = 'CorporateAppeal'; break;
    case 4:
    case 8: result = 'PersonalGrowth'; break;
    case 9:
    case 0: result = 'TheExecution'; break;
		default: result = 'PersonalGrowth';
}
  document.write('<A HREF="' + result + '.wmv">'
  + ' <img src="' + result + '.jpg" border="0" width="129" height="103" align="middle" alt="Video">'
  + ' </A></td><td>&#160;</td><td><Font COLOR="#FFFFFF">Watch our short video.&#160;&#160;Just click on the picture.'
	+ '</Font></td></tr></Table><BR><BR>');
return true
}