function createCookie(name,value){
	var currentDate = new Date();
	currentDate.setTime(currentDate.getTime()+(256*24*60*60*1000)); // + 1 year
	var expires = "; expires="+currentDate.toGMTString();
	document.cookie = name+"="+value+expires+"; path=/";
}

function getCookie(c_name){
	val = "";
	if (document.cookie.length>0){
		c_start=document.cookie.indexOf(c_name + "=")
		if (c_start!=-1){ 
			c_start=c_start + c_name.length+1 
			c_end=document.cookie.indexOf(";",c_start)
			if (c_end==-1) c_end=document.cookie.length
			val=unescape(document.cookie.substring(c_start,c_end))
		} 
	}
	if (val==1){
		window.location.href="http://www.brachot.com/Content/home/1/index.jsp";
	}else if (val==2){
		window.location.href="http://www.brachot.com/Content/home/2/index.jsp";
	}else if (val==3){
		window.location.href="http://www.brachot.com/Content/home/3/index.jsp";
	}else if (val==4){
		window.location.href="http://www.brachot.com/Content/home/4/index.jsp";
	}else if (val==5){
		window.location.href="http://www.brachot.com/Content/home/5/index.jsp";
	}
}



function GaNaar(Page) {
	switch(Page){		
		case 1:				// NL
			Url = 'http://www.brachot.com/Content/home/2/index.jsp';
			createCookie('HermantBrachot','2');
			break;
		case 2:				// FR
			Url = 'http://www.brachot.com/Content/home/3/index.jsp';
			createCookie('HermantBrachot','3');
			break;
		case 3:				// EN
			Url = 'http://www.brachot.com/Content/home/1/index.jsp';
			createCookie('HermantBrachot','1');
			break;
		case 4:				// DE
			Url = 'http://www.brachot.com/Content/home/4/index.jsp';
			createCookie('HermantBrachot','4');
			break;
		case 5:				// PL
			Url = 'http://www.brachot.com/Content/home/5/index.jsp';
			createCookie('HermantBrachot','5');
			break;
	}
	window.location.href = Url;
}