<!--

function howToFind(isToshiba) {
	if (isToshiba)
	{
		alert('The serial number is an alphanumeric string that can be found by choosing About from the Help menu of the NetServer application.');
	} else {
		alert('The lock number is an alphanumeric string that can be found by choosing About from the Help menu of a TASKE Windows application or clicking the Help link in a TASKE web application then clicking Version Information.');
	}
}

function HideContent(d) {
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
document.getElementById(d).style.display = "block";
}
function ReverseDisplay(d) {
	var elem = document.getElementById(d);
if(elem.style.display == "none") { 
	elem.style.display = "block";
elem.parentElement.className = "expandedcontentslist";
}
else { 
	elem.style.display = "none";
	elem.parentElement.className = "";
}
}

// -->