function show(t) {
	var fld = document.getElementById(t);
	if(fld.title == 'Admin') {
		if(fld.style.display != 'none')
			fld.style.display = 'none';
		else
			fld.style.display = '';
	}
	else {
		if(fld.style.display != 'none')
			fld.style.display = 'none';
		else
			fld.style.display = '';
	}
}

function helpText(item) {
	var txt = "";
	switch(item) {
		case 1:
			txt = "Satisfy your craving for the latest information about Silvernode and our products.";
			break;
		case 2:
			txt = "Check out our full list of (open-source) products, with descriptions.";
			break;
		case 3:
			txt = "Waste varying amounts of bandwidth downloading our free programs.";
			break;
		case 4:
			txt = "Any sufficiently advanced technology is indistinguishable from a rigged demo.";
			break;
		case 5:
			txt = "\"If it can't be duplicated, it's not a bug.\" However, real errors can be reported here.";
			break;
		case 6:
			txt = "Take the plunge, and get in touch with the strange people of Planet Silvernode.";
			break;
		case 7:
			txt = "See what the Great Gnu (moo) has to say about your rights regarding our programs.";
			break;
		case 8:
			txt = "Download or view the documentation for all Silvernode software.";
			break;
		case 0:
		default:
			txt = "";
			break;
	}
	document.helpform.movertxt.value = txt;
}