// JavaScript Document

function select_language(selection) {
	if(!selection == "")
	{
		document.location.href=document.location.href='../../'+selection+'/html/index.html';
		//alert("value: " + selection);
	} else {
		document.location.href=document.location.href;
	}
}
