function togglecdd(){
	cddview = document.getElementById('cdd').style.display;
	if (cddview == 'block'){
		cddview = 'none';
	} else {
		cddview = 'block';
	}
	document.getElementById('cdd').style.display = cddview;
}

function switchcountry(country){
	if (!country){
		alert('Please select a country');
	} else {
		createCookie('tgcountry',country,99999999,'.luxxemen.com');
		switch(country){
			case "sg":
				window.location.href="http://sg.luxxemen.com/home";
			break;
			case "id":
				window.location.href="http://id.luxxemen.com/home";
			break;
			case "ph":
				window.location.href="http://ph.luxxemen.com/home";
			break;
			default:
				window.location.href="http://luxxemen.com/home";
			break;
			
		}
	}
}

