function toggleDiv(divid) {
	if ((document.getElementById(divid).style.height == '30px') || (document.getElementById(divid).style.height == '100px'))
	{
		document.getElementById(divid).style.height = '280px';
	} 
	else 
	{
		document.getElementById(divid).style.height = '100px';
	}
}

