var strLang = '';
var iPos = self.location.href.indexOf('?LANG=');
if(iPos < 0)
{
    iPos = self.location.href.indexOf('&LANG=');
}

if(iPos > -1)
{
    strLang = '_' + self.location.href.substr(iPos + 6, 3);

    if(strLang == '_fet')
    {
        strLang = '';
    }
}

document.writeln('<link rel="stylesheet" type="text/css" href="http://www.haartransplantation.at/officecms' + strLang + '.css" />');

