/* http://www.browser-update.org */

var $buoop = {
//    vs: {i:8,f:3,o:9.63,s:2,n:10},  // browser versions to notify
    reminder: 24,                   // atfer how many hours should the message reappear
                                    // 0 = show all the time
    onshow: function(infos){},      // callback function after the bar has appeared

    l: "de",                       // set a language for the message, e.g. "en"
                                    // overrides the default detection
    test: false,                    // true = always show the bar (for testing)
    text: "",                       // custom notification html text
    newwindow: false                // open link in new window/tab
};

$buoop.ol = window.onload;
window.onload=function(){
 if ($buoop.ol) $buoop.ol();
 var e = document.createElement("script");
 e.setAttribute("type", "text/javascript");
 e.setAttribute("src", "http://browser-update.org/update.js");
 document.body.appendChild(e);
}

function email() {
	adresse = new Array('of','fic','e@sys','-adm','in.','at');
	var name = adresse[0]+adresse[1]+adresse[2]+adresse[3]+adresse[4]+adresse[5];
	
	document.write('<a href=\"mailto:' + name + '\">' + name + '</a>');
}

