/* Conclusive Client Side JS file 26.02.2003 */

function cI(name,loc)
{	
	document[loc].src= "images/buttons/" + name + ".gif";
}

function switchLanguage(lang)
{
	var strCurrent = '' + top.main.location;

	if(strCurrent.match('_en_'))
	{
		top.main.location = strCurrent.replace('_en_', '_nl_');
	}

	if(strCurrent.match('_nl_'))
	{
		top.main.location = strCurrent.replace('_nl_', '_en_');
	}	
}
