

<!--
function build_url(domain, tld, pathw)
{
 var url='', link='';
 url = 'http://' + domain + '.' + tld + pathw;
 document.location.replace(url);
 self.focus();
}
//-->

