function ToggleVisibility(id)
{
	if (document.all(id).style.visibility == "hidden")
		SetVisibility(id, "visible");
	else
		SetVisibility(id, "hidden");
}
function SetVisibility(id, idProperty)
{
	document.all(id).style.visibility = idProperty;
}
function GoToTrueBusiness()
{
	window.location.href = "DSITrueBusiness.htm";
}
function GoToQuickPayments()
{
	window.location.href = "DSIQuickPayments.htm";
}
function GoToQuickSSL()
{
	window.location.href = "DSIQuickSSL.htm";
}

