var fDesc=new Array();
fDesc[0] = "There are two main outputs for this calculator:
1. Return on Investment
--Equals Savings / Investment
-- ...where investment represents the sum of incremental investment
in transition from physical to virtual (new servers, shared storage,
VMware licenses, services and training, etc.)
2.Total Cost of Ownership
--Inclusive of IT Administration and downtime costs.
ROI TCO Calculator is meant to generate a credible understanding of cost and benefits so users may need to engage additional resources (sales / finance) for transactions that require more custom models";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}