document.writeln('<script>');
document.writeln('function $(ID){');
document.writeln('return document.getElementById(ID)');
document.writeln('}');
document.writeln('function showTab(ID){');
document.writeln('for(var i=1;i<7;i++){');
document.writeln('if(ID==i){');
document.writeln('$("tab"+i).blur();');
document.writeln('$("tab"+i).className="on";');
document.writeln('$("cont"+i).style.display="block";');
document.writeln('}else{');
document.writeln('$("tab"+i).className="off";');
document.writeln('$("cont"+i).style.display="none";');
document.writeln('}');
document.writeln('}');
document.writeln('return false;');
document.writeln('}');
document.writeln('</script>');
