function loadfun() {
	document.getElementById('newuser').focus();
	extrai = document.getElementById('extrainfo');
	extrai.style.display='none';
	pel = document.createElement('p');
	alink = document.createElement('a');
	alink.href="";
	alink.onclick = toggleextra;
	alink.appendChild(document.createTextNode('Unhide Exta Info'));
	pel.appendChild(alink);
	extrai.parentNode.insertBefore(pel, document.getElementById('screenshots'));
}

function toggleextra() {
	extrai = document.getElementById('extrainfo');
	if (extrai.style.display == 'none') {
		extrai.style.display='block';
		alink.removeChild(alink.firstChild);
		alink.appendChild(document.createTextNode('Hide Extra Info'));
	}
	else {
		extrai.style.display='none';
		alink.removeChild(alink.firstChild);
		alink.appendChild(document.createTextNode('Unhide Exta Info'));
	}
	return false;
}

window.onload = loadfun;