/* ThefastPumaCode - Bas Thomassen*/
/* for IE4 O9 F*/
function klik(taal){
		if (taal!=""){
			if (navigator.browserLanguage){
			// voor IE4 & O9
			var taal = navigator.browserLanguage;
		} else {
			// voor Firefox
			var temp = new Array();
			var taal = navigator.userAgent;
			temp = taal.split(";");
			taal = temp[3].substr(1);
		}
	}
	//alert (taal); // Als je de twee strepen voor de alert weghaalt zie je een popup met de letters van de taal van je browser
	// , "gd", "cy", "ga"
	if (taal=="nl"){
		/* Netherlands, Belgium, Luxembourg	*/
		location.pathname = "bpm-int_nl-belgie-luxmb.html";

	} else if (taal=="de"){
		/* Germany */
		location.pathname = "bpm-int_duitsland.html";		

	} else if (taal=="se"){
		/* Sweden */
		location.pathname = "bpm-int_zweden.html";		

	} else if (taal=="pl"){
		/* Switzerland, Austria, East Europe */
		location.pathname = "bpm-int_zwitserl-oosterijk-oosteu.html";
	} else if (taal=="bg"){
		/* Switzerland, Austria, East Europe */
		location.pathname = "bpm-int_zwitserl-oosterijk-oosteu.html";
	} else if (taal=="cs"){
		/* Switzerland, Austria, East Europe */
		location.pathname = "bpm-int_zwitserl-oosterijk-oosteu.html";
	} else if (taal=="hu"){
		/* Switzerland, Austria, East Europe */
		location.pathname = "bpm-int_zwitserl-oosterijk-oosteu.html";
	} else if (taal=="ro"){
		/* Switzerland, Austria, East Europe */
		location.pathname = "bpm-int_zwitserl-oosterijk-oosteu.html";
	} else if (taal=="ru"){
		/* Switzerland, Austria, East Europe */
		location.pathname = "bpm-int_zwitserl-oosterijk-oosteu.html";
	} else if (taal=="sk"){
		/* Switzerland, Austria, East Europe */
		location.pathname = "bpm-int_zwitserl-oosterijk-oosteu.html";
	} else if (taal=="sl"){
		/* Switzerland, Austria, East Europe */
		location.pathname = "bpm-int_zwitserl-oosterijk-oosteu.html";

	} else if (taal=="en"){
		/* England, Scotland, Wales, Ireland */
		location.pathname = "bpm-int_eng-schotlnd-ierland-wales.html";
	} else if (taal=="gd"){
		/* England, Scotland, Wales, Ireland */
		location.pathname = "bpm-int_eng-schotlnd-ierland-wales.html";
	} else if (taal=="cy"){
		/* England, Scotland, Wales, Ireland */
		location.pathname = "bpm-int_eng-schotlnd-ierland-wales.html";
	} else if (taal=="ga"){
		/* England, Scotland, Wales, Ireland */
		location.pathname = "bpm-int_eng-schotlnd-ierland-wales.html";		

	} else if (taal=="en-us"){
		/* US */
		location.pathname = "bpm-int_eng-schotlnd-ierland-wales.html";

	} else if (taal=="pt"){
		/* Portugal, Spain, Italy */
		location.pathname = "bpm-int_portugal-spanje-italie.html";
	} else if (taal=="es"){
		/* Portugal, Spain, Italy */
		location.pathname = "bpm-int_portugal-spanje-italie.html";
	} else if (taal=="it"){
		/* Portugal, Spain, Italy */
		location.pathname = "bpm-int_portugal-spanje-italie.html";

	} else if (taal=="fr"){
		/* France */
		location.pathname = "bpm-int_zwitserl-oosterijk-oosteu.html";

	} else {
		/* Other */
		location.pathname = "bpm-int_andere-landen.html";
	}
}