function box1()
{
	var div = document.getElementById("col1a");

	div.style.background="#bdd73c";
	div.style.padding="0px 10px 0px 10px";
	div.style.overflow="hidden";
	div.innerHTML = 
		"<h2 style='text-align:left; font-size:11pt;'>Sign up and stay informed!</h2>" + 
		"<p style='width:100%; color:gray; font-size:9pt;'>To receive an irregular newsletter from ccit keeping you up-to-date with our services, the latest news from " +
		"the industry and any other trivia or fun stuff we find, enter your email address below. We'll only use your address " +
		"for this purpose, and you can unsubscribe at any time.</p>" +
		"<div style='margin-top:20px; width:100%;'>" +  
		"<form method='post' action='http://www.ccit.co.uk/mail.php'><input type='text' name='emailadd' cols=50 style='width:70%; left:5%; position:absolute;'/>" +
		"<input type='submit' value='join' style='position:absolute; width:15%; right: 5%;'/>" +
		"</div>";
}

function box2()
{
	var div = document.getElementById("col1b");

	div.style.background="#bdd73c";
	div.style.background="white";
	div.style.overflow="hidden";
	div.style.padding="0px 10px 0px 10px";
	
	div.innerHTML = 
		"<h2 style='text-align:left; font-size:11pt;'>Latest news</h2>" + 
		"<p>" +
		"<span style='color:#015229;'>2009-05-06 Website launch</span><br/>The new website is nearly ready to go live, and we're very excited!  " + 
		"<a style='font-size:6pt; text-decoration: none;' href='news/2.html'>read more...</a> " +
		"</p><p>" + 
		"<span style='color:#015229;'>2009-04-27 ccit in charity role</span><br/>ccit will be devoting engineering time to helping the Citizen's Advice Bureau to manage their data  " +
		"<a style='font-size:6pt; text-decoration: none;' href='news/1.html'>read more...</a> " +
		"</p>" 
}


window.onload=function() { box1(); /*box2();*/ };

