function setLanguage(lang) {
	window.document.cookie = 'lang='+lang+';path=/; expires=Mon, 01-Jan-2018 00:00:01 GMT';
	window.document.location.reload();
}

function setLang(lang) {
	window.document.cookie = 'lang='+lang+';path=/; expires=Mon, 01-Jan-2018 00:00:01 GMT';
	window.document.location.href='main.php';
}

setupZoom();

function switchTab(sex) {

	if(sex=='w') {
		document.getElementById('womentab').src='images/tab_women_active.jpg';
		document.getElementById('mentab').src='images/tab_men_inactive.jpg';
	}
	
	if(sex=='m') {
		document.getElementById('mentab').src='images/tab_men_active.jpg';
		document.getElementById('womentab').src='images/tab_women_inactive.jpg';
	}
}
