function addHTML(whichLinks,closeMe)
{ // draws table content for links 1 c 2003 Mike Lowe michael.r.lowe@rctednet.net

 // Contains HTML to be written to page
var container = "";
var icon = "=\"images/webLink.gif\"";
// check for close value - if false then write out the HTML stream - if true then ignore this block - innerHTML = nothing
if (closeMe == "show" & whichLinks == "govLinks")
			{
			container ="<table width=100% border=0 cellpadding=1 cellspacing=3 id=govLinks>";
			container +="<tr>";
			container +="<td valign=\"middle\" align=\"left\" colspan=\"3\" class=\"subHeadingRed\">Government Links</td>";
			container +="</tr>";
			container += "<tr>";
			container +="<td nowrap width=30%><a href=\"http://www.dfes.gov.uk/governor/\" class=\"BlueLink\" target=\"_blank\">DfES School Governors</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">The DfES School Governors Centre</span></td>";        
			container +="</tr>";
			container += "<tr>";
			container +="<td nowrap width=30%><a href=\"http://www.niss.ac.uk/world/misc-reports.html\" class=\"BlueLink\" target=\"_blank\">Education Reports</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">Major reports relating to education</span></td>";        
			container +="</tr>";
			container += "<tr>";
			container +="<td nowrap width=30%><a href=\"http://www.hmso.gov.uk/\" class=\"BlueLink\" target=\"_blank\">HMSO</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">All the latest education information/circulars</span></td>";        
			container +="</tr>";
			container +="<tr>";
			container +="<td nowrap width=30%><a href=\"http://www.isc.co.uk/\" class=\"BlueLink\" target=\"_blank\">ISC</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">Independent Schools Council</span></td>";        
			container +="</tr>";
			container +="<tr>";
			container +="<td nowrap width=30%><a href=\"http://www.lsda.org.uk/home.asp\" class=\"BlueLink\" target=\"_blank\">LSDA</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">Learning and Skills Development Agency</span></td>";        
			container +="</tr>";
			container +="<tr>";
			container +="<td nowrap width=30% valign=top><a href=\"http://www.teachernet.gov.uk/childprotection\" class=\"BlueLink\" target=\"_blank\">Child Protection</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">TeacherNet Website - information regarding child protection.</span></td>";        
			container +="</tr>";
			container +="<tr>";
			container +="<td nowrap width=30% valign=top><a href=\"http://safety.ngfl.gov.uk/\" class=\"BlueLink\" target=\"_blank\">Safe use of the Internet</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">Department for Education - Superhighway Safety</span></td>";        
			container +="</tr>";
			container +="<tr>";       
			container +="<td></td>";      
			container +=" <td></td>";      
			container +="<td align=right class=defaultFont><img src=\"images/webLinktop.gif\" width=20 height=20 border=0><a href=\"#\" class=\"BlueLink\" onMouseDown=\"addHTML('govLinks','close')\">Close</a></td></tr>";                  
			container +="</table>";                     
			
			document.all.links.innerHTML = container;
						
			}

// Curriculum Links
			
if (closeMe == "show" & whichLinks == "curriculum")
			{
			container ="<table width=100% border=0 cellpadding=1 cellspacing=3 id=govLinks>";
			container +="<tr>";
			container +="<td valign=\"middle\" align=\"left\" colspan=\"3\" class=\"subHeadingRed\">Curriculum Links</td>";
			container +="</tr>";
			container +="<tr>";
			container +="<td width=30% nowrap><a href=\"http://www.accac.org.uk/schoolcurric/nationalcurricguidance.html\" class=\"BlueLink\" target=\"_blank\">The NC</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">National Curriculum Guidance</span></td>";        
			container +="</tr>";
			container += "<tr>";
			container +="<td width=30%><a href=\"http://www.rctednet.net/numeracy/\" class=\"BlueLink\" target=\"_blank\">Numeracy</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">RCT Numeracy Website</span></td>";        
			container +="</tr>";
			container += "<tr>";
			container +="<td width=30%><a href=\"http://www.NGFL-cymru.org.uk/\" class=\"BlueLink\" target=\"_blank\">NGFL - Cymru</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">National Grid For Learning Cymru</span></td>";        
			container +="</tr>";
			container +="<tr>";       
			container +="<td></td>";      
			container +="<td></td>";      
			container +="<td align=right class=defaultFont><img src=images/webLinktop.gif width=20 height=20 border=0><a href=\"#\" class=BlueLink onMouseDown=\"addHTML('curriculum','close')\">Close</a></td></tr>";                  
			container +="</table>";                     
			
			document.all.links.innerHTML = container;

			}
		
// Information Technology
			
if (closeMe == "show" & whichLinks == "infotech")
			{
			container ="<table width=100% border=0 cellpadding=1 cellspacing=3 id=govLinks>";
			container +="<tr>";
			container +="<td valign=\"middle\" align=\"left\" colspan=\"3\" class=\"subHeadingRed\">Information Technology Links</td>";
			container +="</tr>";
			container +="<tr>";
			container +="<td nowrap width=30%><a href=\"http://www.becta.org.uk/\" class=\"BlueLink\" target=\"_blank\">Basic Skills Agency</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">UK Government ICT in education</span></td>";        
			container +="</tr>";
			container +="<tr>";
			container +="<td nowrap width=30%><a href=\"http://www.standards.dfes.gov.uk/new/published/frameICT\" class=\"BlueLink\" target=\"_blank\">Standards</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">Framework for teaching ICT capability</span></td>";        
			container +="</tr>";
			container +="<tr>";       
			container +="<td></td>";      
			container +="<td></td>";      
			container +="<td align=right class=defaultFont><img src=\"images/webLinktop.gif\" width=20 height=20 border=0><a href=\"#\" class=BlueLink onMouseDown=\"addHTML('infotech','close')\">Close</a></td></tr>";                  
			container +="</table>";                     
			
			document.all.links.innerHTML = container;

			}			

		
		
// Miscellaneous Links
		
			
if (closeMe == "show" & whichLinks == "misc")
			{
			container ='<table width=100% border=0 cellpadding=1 cellspacing=3 id="govLinks">';
			container +="<tr>";
			container +="<td valign=\"middle\" align=\"left\" colspan=\"3\" class=\"subHeadingRed\">Miscellaneous Links</td>";
			container +="</tr>";
			container +="<tr>";
			container +="<td nowrap width=30%><a href=\"http://www.theteachernet.co.uk/unions/\" class=\"BlueLink\" target=\"_blank\">Unions</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">Information for teachers</span></td>";        
			container +="</tr>";
			container +="<tr>";
			container +="<td nowrap width=30% valign=top><a href=\"http://www.walesontheweb.org/\" class=\"BlueLink\" target=\"_blank\">Wales on the Web</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">Gateway to material of Welsh interest on the World Wide Web</span></td>";        
			container +="</tr>";
			container +="<tr>";
			container +="<td nowrap width=30% valign=top><a href=\"http://www.rct-arts.co.uk/Arts%20Development/SONIG/index.htm\" class=\"BlueLink\" target=\"_blank\">Sonig</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">SONIG Youth Music Industry Initiative launched by Rhondda Cynon Taff County Borough Council Arts Development Unit</span></td>";        
			container +="</tr>";
			container +="<tr>";
			container +="<td nowrap width=30% valign=top><a href=\"http://www.rctednet.net/lac-forum/\" class=\"BlueLink\" target=\"_blank\">LAC Forum</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">Information for 'looked after children & young adults'.</span></td>";        
			container +="</tr>";
			container +="<tr>";
			container +="<td nowrap width=30% valign=top><a href=\"http://www.rhondda-cynon-taff.gov.uk/cid/\" class=\"BlueLink\" target=\"_blank\">RCT-Community Information</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">Community Information Database containing over 1300 local and national groups and organisations</span></td>";        
			container +="</tr>";
			container +="<tr>";
			container +="<td nowrap width=30% valign=top><a href=\"http://www.rspca.org.uk/education/\" class=\"BlueLink\" target=\"_blank\">RSPCA</a></td>";
			container +="<td width=66%><span class=\"defaultFont\">Royal Society for the Prevention of Cruelty to Animals Education website</span></td>";        
			container +="</tr>";
			container +="<tr>";       
			container +="<td></td>";      
			container +="<td></td>";      
			container +="<td align=right class=defaultFont><img src=\"images/webLinktop.gif\" width=20 height=20 border=0><a href=\"#\" class=BlueLink onMouseDown=\"addHTML('misc','close')\">Close</a></td></tr>";                  
			container +="</table>";                     
			document.all.links.innerHTML = container;
			}			
		
//	remove content
if (closeMe == "close")
			{
			document.all.links.innerHTML = "";	
			}



			
}
