//requires XHRnew and XHRInit from oorgoo.js
var firsthelp=XHRnew();
var firsthelploaded=0;

function getfirsttimehelp()
{	if (firsthelploaded==1)
	{	$Sc('firsttimehelptable','firsttimehelp f-green');
	}
	else
		XHRInit(firsthelp,'GET','c=firsttimehelp',loadfirsthelp);
}

function loadfirsthelp()
{	if ((firsthelp.readyState==4) && (firsthelp.status==200))
	{	var helpcontent=$DOM(eval(firsthelp.responseText));
		$('firsttimehelpcontent').appendChild(helpcontent);
		$Sc('firsttimehelptable','firsttimehelp f-green');
		document.getElementsByTagName('body')[0].className='cursorgo';
		firsthelploaded=1;
	}
}

function hidefirsttimehelp()
{	$Sc('firsttimehelptable','hidden'); }
