function sprache_go_location(obj) {
    var location = obj.options[obj.selectedIndex].value;
    if (location) {
        top.document.location.href = location;
    }
}
function sprachen_link() {
        document.open();
        document.write("<form name=\"form\">");
        document.write("<select name=\"hoge\" size=\"1\" onChange=\"sprache_go_location\(this\)\" class=\"light\">");
        document.write("<option value=\"\">Language");
        document.write("<option value=\"\">\-\-\-\-\-\-\-\-\-\-\-\-\-\-");
        document.write("<option value=\"http:\/\/www.diman8.com/index.html\">bulgarian");
        document.write("<option value=\"http:\/\/www.diman8.com/german/index.html\">german");
        document.write("<option value=\"http:\/\/www.diman8.com/english/index.html\">english");
        document.write("<option value=\"http:\/\/www.diman8.com/russian/index.html\">russian");
        document.write("<option value=\"\">\-\-\-\-\-\-\-\-\-\-\-\-\-\-");

        document.write("");
        document.write("</select>");
        document.write("</form>");
        document.close();
}

