// JavaScript Document

function infoopen(n, v)
{
	var obj = document.getElementById('infomore'+n);
	if (obj.style.display == v) { return false; }
	if (obj.style.display == 'none') { obj.style.display = 'block'; }
	else { obj.style.display = 'none'; }
	return true;
}
