<!--

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.parentNode.className = "expandedcontentslist";
}
else { 
	elem.style.display = "none";
	elem.parentNode.className = "";
}
}

// JavaScript Document
$(document).ready(function(){
	$("#dropmenu ul").css({display: "none"}); // Opera Fix
	$("#dropmenu li").hover(function(){
			$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(268);
		},function(){
			$(this).find('ul:first').css({visibility: "hidden"});
	});
	$('.showLink').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();
/*
$("#accord").accordion( {
						   active: false, 
						   header: '.showLink', 
						   navigation: true, 
						   event: 'mouseover', 
						   });
*/
});  
// -->
