function setlanguage(domain)
{
	var gotonewurl;
	var hostname=location.hostname;

	if(hostname.substring(0,4)=='www2')
	{
		hostname='www2';
	}
	else
	{
		hostname='www';
	};
	
	if(location.pathname=='/homepage/')
	{
	gotonewurl='http://'+hostname+'.'+domain+'.be'+location.pathname+'index.cfm'+location.search+location.hash;
	}
	else
	{
	gotonewurl='http://'+hostname+'.'+domain+'.be'+location.pathname+location.search+location.hash;
	};
	//gotonewurl='http://www.'+domain+'.be'+location.pathname+location.search+location.hash;
	document.formchangelanguage.action=gotonewurl;
	document.formchangelanguage.submit();
};