<!--
var type=navigator.appName
if (type=="Netscape")
var lang = navigator.language
else
var lang = navigator.userLanguage

//cut down to first 2 chars of country code
var lang = lang.substr(0,2)

// english
if (lang == "en")
window.location.replace('forum')

// nederlands
else if (lang == "nl")
window.location.replace('forum')

// if none of above (default to English or any other)
else
window.location.replace('forum')
//-->