<!--
function toggleVisibility(id) {
if ((document.getElementById(id).style.display)=='none')
{
document.getElementById(id).style.display = 'block';
}else{
document.getElementById(id).style.display = 'none';
}
}

function VisibilityOn(id) {
document.getElementById(id).style.display = 'block';
}

function VisibilityOff(id) {
document.getElementById(id).style.display = 'none';
}
//-->