/***************  Javascript by hughesgdp - 2007-2010  ****************************/

function checkCookie() {
	if (document.cookie) {
		var y = document.cookie;
		if (y.indexOf("FR") > -1) {
			window.location = "fr/index-fr.htm";
			}
		if (y.indexOf("NL") > -1) {
			document.location = "nl/index-nl.htm";
			}
		if (y.indexOf("EN") > -1) {
			document.location = "en/index-en.htm";
			}
		}
	}

function setCookie(link) {
	var cdate = new Date();
	cdate.setMonth(cdate.getMonth() + 1);
	cdate = cdate.toGMTString();
	document.cookie = link + "; expires=" + cdate + "; path=" + "/";
	checkCookie();
    }


/**************************************************************************/

