<!--
function hlpOff(n) {
var p = document.getElementById(n+'-hlp');
if (p)
 {
 p.style.display = 'none';
 }
}

function hlpOn(n,t) {
var p = document.getElementById(n+'-hlp');
if(p)
 {
 document.getElementById(n+'-hlp-t').innerHTML = t;
 p.style.display = 'inline';
 }
}

function hlpOnOff(n,s,ton,toff,a,id) {
if (s)
 {
 if (a)
 {
 document.getElementById(id).style.display = 'inline';
 }
 hlpOn(n,ton);
 }
 else
 {
 if (a)
 {
 document.getElementById(id).style.display = 'none';
 }
 hlpOn(n,toff);
 }
}
//-->


