function toggle(id){var e=$(id);if(e){e.style.display=='none'?show(e):hide(e);}
return false;}
function show(id){var e=$(id);if(e){e.style.display='';}
return false;}
function hide(id)
{var e=$(id);if(e){e.style.display='none';}
return false;}
function cleanHTML(str){var div=new Element('DIV');div.innerHTML=str.replace(/<\/?[^>]+>/gi,'');return div.childNodes[0]?div.childNodes[0].nodeValue:'';}
function showtip(e){var tip=$('tooltip4'+e.id);if(tip){if(tip.style.visibility!='hidden')return;tip.fade=tip.effect('opacity',{duration:500});tip.fade.start(0,1);}}
function hidetip(e){var tip=$(e).getParent();if(tip)tip.fade.start(1,0);}