function CheckLanguage()
{
	var x = navigator;
	if(x.browserLanguage == "nl" || x.userLanguage == "nl")
    		window.location="http://bigdavedev.com/NL/index-nl.html";
	else if (x.browserLanguage == "de" || x.userLanguage == "de")
    		window.location="http://bigdavedev.com/DE/index-de.html";
	else window.location="http://bigdavedev.com/EN/index.html";
}
