
////////////////////////////////////////////////////////////
//Copyright: Sandip Debnath (sandipdebnath@hotmail.com). 
//You have to keep this notice to use it, and can not 
//change anything below this line.
////////////////////////////////////////////////////////////


var monMin = new Array();
monMin['Jan'] = "<td id=l1 class=loff onmouseover=\"ShowMin('Jan13');OnOffMin(this);\" width=50px  align=center>Jan 13</td><td id=l2 class=loff onmouseover=\"ShowMin('Jan26');OnOffMin(this);\" width=50px  align=center>Jan 26</td>";
monMin['Feb'] = "<td id=l1 class=loff onmouseover=\"ShowMin('Feb09');OnOffMin(this);\" width=50px  align=center>Feb 09</td><td id=l2 class=loff onmouseover=\"ShowMin('NA');OnOffMin(this);\" width=50px  align=center>Feb ??</td>";
monMin['Mar'] = "NA";
monMin['Apr'] = "NA";
monMin['May'] = "NA";
monMin['Jun'] = "NA";
monMin['Jul'] = "NA";
monMin['Aug'] = "NA";
monMin['Sep'] = "NA";
monMin['Oct'] = "NA";
monMin['Nov'] = "NA";
monMin['Dec'] = "NA";


function OnOffMin(lx)
{
 l1.className='loff';
 l2.className='loff';
 lx.className='lon';
}

function OnOffDirMin(dx)
{
 d1.className='t_off';
 d2.className='t_off';
 d3.className='t_off';
 d4.className='t_off';
 d5.className='t_off';
 d6.className='t_off';
 d7.className='t_off';
 d8.className='t_off';
 d9.className='t_off';
 d10.className='t_off';
 d11.className='t_off';
 d12.className='t_off';

 dx.className='t_on';
}

///////////////////////////////////////////////////////////
function ShowI(what)
{
 var src = "<br><left><table width=50% cellpadding=0 cellspacing=0><tr><td width=5px>&nbsp;</td>"

 if(monMin[what] == "NA")
  src += "<td class=loff>"+ what + " ?? </td>";
 else src +=monMin[what];

 src += "<td width=50%>&nbsp;</td></tr></table>";

 if (document.all||document.getElementById)
 {
  minutes.innerHTML = src;
 }
 else if (document.layers)
 {
  document.minu.document.write(src);
  document.minu.document.close();
 }

 if(monMin[what] == "NA") ShowMin('Default');
}


///////////////////////////////////////////////////
function ShowMin(what)
{
 var ie=document.all
 var dom=document.getElementById


 if (ie||dom)
 {
  var iframeobj= document.getElementById? document.getElementById("MIN") : document.all.MIN
  iframeobj.src= 'http://www.uttoron.org/www/u_org/Minutes/2008/' + what + '.html';
 }
}














