function eventon(fn)
{    
    if (window.attachEvent) //IE
 {
 var a = window.attachEvent("onload", fn);
   return a;
 }
    else if (window.addEventListener) // Gecko
 {
 window.addEventListener("load", fn, true);
   return true;
 }
    else
 {
   return false;
 }
}
function change(){
var e = "Egochat - ";
document.getElementById('terms').onclick=function(){
showHint("terms");
document.title =  e+"Szabályzat";
}
document.getElementById('login').onclick=function(){
showHint("login");
document.title =  e+"Bejelentkezés";
}
document.getElementById('home').onclick=function(){
showHint("home");
document.title =  e+"Index";
}
document.getElementById('help').onclick=function(){
showHint("help");
document.title =  e+"Segítség";
}
}
eventon(change);

