// JavaScript Document
function changeLanguage(newlang){
	var temp;
	regex = /\/(nl|sp|en|de|fr)\//;
	var currentURL = document.URL;
	newURL = currentURL.replace(regex, newlang);
	if(newURL == "http://www.international-doctor.com/sp/grootExpertise.php")
	{
		newURL = "http://www.international-doctor.com/sp/medicalOverview.php";
	}
	/*if((newURL == "http://localhost/htdocs/charlotte/sp/deenExpertise.php") || (newURL == "http://localhost/htdocs/charlotte/sp/grootExpertise.php"))
		newURL = "http://localhost/htdocs/charlotte/sp/medicalOverview.php";*/
	location.href = newURL;
}