function buildingLink(start_id) {
        current_date = new Date();
        current_month = current_date.getMonth();
        current_month = (current_month + 1) * 1;
        if (current_month < 10) current_month = "0" + current_month;
        current_day = current_date.getDate();
        if (current_day < 10) current_day = "0" + current_day;
        current_year = current_date.getYear();
        current_year = (current_year < 1000) ? current_year + 1900 : current_year;
        linkURL = "/show/xmlsite/xml-standard.xml/start_id-" + start_id + "/xsl-leasing_building.xsl/date-" + new String(current_year) + new String(current_month) + new String(current_day);
        location.href = linkURL;
      }

