hStat=0
hID='hilfe1'
function StartHelp(){
if(hStat==0){onOff(hID);hStat=1;}
bob.style.visibility='visible'
currencyselector.style.visibility='hidden'}
function onOff(id){
obj=(document.getElementById ? document.getElementById(id):(document.all ? document.all[id] :(document.layers ? document.layers[id] : null)))
obj.style.visibility=(obj.style.visibility=='visible' ? 'hidden' : 'visible')}
function EndHelp(id){
hStat=0
hID='hilfe1'
obj=(document.getElementById ? document.getElementById(id):(document.all ? document.all[id] :(document.layers ? document.layers[id] : null)))
obj.style.visibility='hidden'
bob.style.visibility='hidden'
currencyselector.style.visibility='visible'}
function Next(id){
onOff(id)
if(id=='hilfe1'){hID='hilfe2'}
if(id=='hilfe2'){hID='hilfe3'}
onOff(hID)}
function Prev(id){
onOff(id)
if(id=='hilfe2'){hID='hilfe1'}
if(id=='hilfe3'){hID='hilfe2'}
onOff(hID)}
