Hello This will not work:
function help()
{
var xx;
xx = document.getElementById('xx');
xx.style.visibility = 'visible';
}
but this will
function help()
{
var xx;
xx = document.getElementById('xx');
xx.style.visibility = 'hidden';
}
The label (xx) is set to visible=false in visual studio..could this by why