var fDesc=new Array();
fDesc[0] = "The AccuWage application allows the Annual Wage Report (AWR) submitters to test the format accuracy of wage reports prior to sending them to the Social Security Administration (SSA) for processing.
The AccuWage application checks the W-2 wage reports to ensure they comply with Publication 42-007: Specifications for Filing Forms W-2 Electronically (EFW2) and provides reports listing all errors found in the wage report. The wage report cannot be edited using the AccuWage software. The submitter can create a new EFW2 test file or correct the existing EFW2 test file that generated the errors. The wage report can be repeatedly retested until all the errors have been corrected.";
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 = '';
}
}