function bottomSect(){
	
document.write('<div id="bottom_container" class="std3">Copyright &copy; 2009 <a href="http://www.blueorange.com.sg" target="_blank">Blue Orange Pte Ltd</a>. Creator of <a href="http://www.myhometutor.org" target="_blank">MyHomeTutor&#8482;</a>, <a href="http://academy.myhometutor.org" target="_blank">MyHomeTutor Academy</a> and <a href="http://www.olevelguru.com" target ="_blank">OLevelGuru&#8482;</a> &nbsp;| &nbsp;<a href="terms.html"><b>Terms and Conditions</b></a></div>');
}

function unhide(divID) {
    var item = document.getElementById(divID);
    var hint = document.getElementById(divID + "_hint");
    if (item) {
        if(item.className == 'hidden') {
          item.className = 'unhidden';
		  //hint.firstChild.nodeValue = "<img src='../images/drop_up.gif'>";
		  hint.innerHTML = '<img src="images/drop_down.gif" border="0">';
         /*hint.firstChild.nodeValue = '(click to minimize chapter list)';*/
        }
        else {
          item.className = 'hidden';
          //hint.firstChild.nodeValue = "<img src='../images/drop_down.gif'>";
          /*hint.firstChild.nodeValue = '(click to expand chapter list)';*/
		   hint.innerHTML = '<img src="images/drop_up.gif" border="0">';
        //item.className=(item.className=='hidden')?'unhidden':'hidden';
        }
    }
}

function fullScreen(theURL) {   
   window.open(theURL, '', 'fullscreen=yes, scrollbars=auto');
} 
