function checkCookie() {
if (Get_Cookie('sessionSelectedLocale') == null) {

//alert("The cookie doesn't exist, so we need to redirect to a page where the user can select a market");

Set_Cookie('cookieTest', 'test', 1, '/', 'stelladot.com', '');
if (Get_Cookie('cookieTest') != null) {
	window.location.href="/luxejewels/includes/choose-cookie.html";
} else {
	alert("This site requires a browser that accepts cookies if you would like to shop online.")
}



}



}

window.setTimeout("checkCookie()", 1000); 