/* Intertade catalogue filters */
function setAge(refresh) {
	var e = document.getElementById('ageSelect');
	setCookie('age', e.options[e.selectedIndex].value, "/");
	if (refresh) location.href = location.href;
}

function SetAgeSelect() {
	var e = document.getElementById('ageSelect');
	var name = getCookie('age');
	var i;
	for (i=0; i<e.options.length; i++) {
		if (e.options[i].value == name) e.options[i].selected = "selected";
	}
}

function testCookie() {
	setCookie('test', 'testing');
	//alert('"' + getCookie('test') + '"');
	if (getCookie('test') != 'testing') {
		document.write("<h4 style='font-size: 90%'>В Вашем браузере отключены Cookies, поэтому Вы не сможете применять фильтр по поставщику. Включите Cookies для того, чтобы Вы могли пользоваться всеми возможностями сайта.</h4>");
	}
	setCookie('test', '');
}
