function layout_selectLanguage(opt) {
	if(opt) {
		var val = opt.getAttribute("value");
		var pdf = opt.getAttribute("pdf");
		if(pdf) {
			document.location.href = "client/frontpage/"+val;
//			var dl = window.open("client/frontpage/"+val);
		} else {
			document.location.href = val;
		}
	}
}
