function show(id,div)
{
	el = document.getElementById(id);
	if (el.style.display == 'none')
	{
		el.style.display = '';
		writeDIV(div,"Less Info");		
	} else {
		el.style.display = 'none';
		writeDIV(div,"More Info");
	}
}

function go(url){
  window.location.href=url;
}

function writeDIV(div,text)
  {
  var txt=document.getElementById(div)
  txt.innerHTML=text;
  }