﻿function createLink(address,page,name){
	var c = document.createElement('LI');
	c.innerHTML = '<a href="'+address+page+'">'+name+'</a>'
	return c;	
}
function buildLocationMenu(){	
	var o=document.getElementById('translated');
	if(o!=null){			
		var n=o.value;
		var lm = document.getElementById('lm');				
		lm.appendChild(createLink('http://www.reliasoft.com/',n,'English'));
		lm.appendChild(createLink('http://www.reliasoft.de/',n,'Deutsch'));
		lm.appendChild(createLink('http://www.reliasoft.fr/',n,'Fran&#231;ais'));
		lm.appendChild(createLink('http://www.reliasoft.com.br/',n,'Portugu&#234;s'));
		lm.appendChild(createLink('http://www.reliasoft.jp/',n,'Japanese'));
		lm.appendChild(createLink('http://www.reliasoft.ru/',n,'Russian'));
		lm.appendChild(createLink('http://www.reliasoft.com.pl/','','Polski'));
		lm.appendChild(createLink('http://www.reliasoft.it/',n,'Italiano'));
		lm.appendChild(createLink('http://China.reliasoft.com/',n,'Chinese'));

		var qm=document.getElementById('qm0');			
		qm.style.visibility='visible';
	}
}

