function doprint()
{
        showall()
        self.window.print()
}

function showall()
{
//nCount is defined in the main text, depending on the number of articles        
for (nI=0;nI<nCount;nI++)
{
strEval="list"+nI+".style.display=''";
            eval(strEval)
}
}

function doshow(strDiv)

{

if (strDiv.style.display=='none')
	strDiv.style.display='';
else
	strDiv.style.display='none';
}
