var agent=navigator.userAgent.toLowerCase();
var sound = document.cookie;
var sound = unescape(sound);
if (sound.indexOf("sound=0")!=-1) soundmode="0"
else soundmode="1"

function off()
{
soundmode = "0";
var sound = "sound=" + soundmode;
var expDays = "30";
var exp = new Date(); 
exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
sound = sound + "; expires=" + exp.toGMTString();
document.cookie = sound;
alert("Is ready! Please refresh this page!");
}

function on()
{
soundmode = "1";
var sound = "sound=" + soundmode;
var expDays = "30";
var exp = new Date(); 
exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
sound = sound + "; expires=" + exp.toGMTString();
document.cookie = sound;
alert("Is ready! Please refresh page by the F5 key!");
if (agent.indexOf("netscape")!=-1 || agent.indexOf("gecko")!=-1 || navigator.appName=="Netscape") alert("Please be sure, that all modules are installed!");
}

document.write('</td><td bgcolor="#00aaff" width="130"><a href="#" onClick="window.open(\'tips_en.htm\', \'newWin\', \'toolbar=0, location=0, directories=0, status=0, menubar=0, top=6, left=666, scrollbar=0, resizable=1, width=100, height=100\')" title="Get a tip !">tips</a>')
if (soundmode=="1") document.write('<br><a href="javascript:off();" title="Disable music !">sound off</a>')
if (soundmode=="0") document.write('<br><a href="javascript:on();" title="Allow music !">sound on</a>')
tip="Translate to the native language !"
document.write('<div class="trbar"> <a href="http://translate.google.com/translate?hl=de&sl=en&u=' + document.location + '" target="_blank" title="'+tip+'">German</a> <a href="http://translate.google.com/translate?hl=es&sl=en&u=' + document.location + '" target="_blank" title="'+tip+'">Spanish</a> <a href="http://translate.google.com/translate?hl=fr&sl=en&u=' + document.location + '" target="_blank" title="'+tip+'">French</a> <a href="http://translate.google.com/translate?hl=it&sl=en&u=' + document.location + '" target="_blank" title="'+tip+'">Italian</a> <a href="http://translate.google.com/translate?hl=pt&sl=en&u=' + document.location + '" target="_blank" title="'+tip+'">Portuguese</a> <a href="http://translate.google.com/translate?hl=ja&sl=en&u=' + document.location + '" target="_blank" title="'+tip+'">Japanese</a> <a href="http://translate.google.com/translate?hl=ko&sl=en&u=' + document.location + '" target="_blank" title="'+tip+'">Korean</a> <a href="http://translate.google.com/translate?hl=zh-CN&sl=en&u=' + document.location + '" target="_blank" title="'+tip+'">Chinese&nbsp;(Simplified)</a> </div>')