Booking Request Form

Booking Request Form

  • Choose
  • Inventory Check In (unfurnished)
  • Inventory Check In (furnished)
  • Inventory Only (unfurnished)
  • Inventory Only (furnished)
  • Check Out (unfurnished)
  • Check Out (furnished)
  • Check Out & Check In (unfurnished)
  • Check Out & Check In (furnished)
  • Month
  • January
  • February
  • March
  • April
  • May
  • June
  • July
  • August
  • September
  • October
  • November
  • December
  • Day
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • Year
  • 2020
  • 2021
  • 2022
  • 2023
  • 2024
  • 2025
  • 2026
  • 2027
  • 2028
  • 2029
  • 2030
  • 2031
  • 2032
  • 2033
  • 2034
  • 2035
  • 2036
  • 2037
  • 2038
  • 2039
  • 2040
:
  • Period
  • AM
  • PM
  • Choose
  • Studio
  • 1 Bedroom
  • 2 Bedrooms
  • 3 Bedrooms
  • 4 Bedrooms
  • 5+ Bedrooms
  • Choose
  • 1
  • 2
  • 3
  • 4
  • 5+
Note: itemization of cups, plates, cutlery & other small items has an additional cost of £35.00.
function calculateWearTear() { const tenancyLength = parseFloat(document.getElementById('tenancyLength').value); const occupants = parseInt(document.getElementById('occupants').value); const itemAge = parseFloat(document.getElementById('itemAge').value); const condition = document.getElementById('condition').value; if (!tenancyLength || !occupants || !itemAge || !condition) { document.getElementById('result').innerHTML = "Please fill out all fields."; return; } let wearFactor = 0; // Assigning wear factor based on condition if (condition === "good") { wearFactor = 1; } if (condition === "average") { wearFactor = 1.5; } if (condition === "poor") { wearFactor = 2; } // Calculate Wear & Tear Score const wearAndTearScore = Math.min(100, (tenancyLength * wearFactor * occupants) / (itemAge + 1) * 10); let recommendation = ""; // Recommendations based on wear & tear score if (wearAndTearScore < 25) { recommendation = "Minimal wear and tear. Item in good condition."; } else if (wearAndTearScore < 50) { recommendation = "Moderate wear and tear. Consider light repairs."; } else if (wearAndTearScore < 75) { recommendation = "Significant wear and tear. Replacement may be necessary."; } else { recommendation = "Severe wear and tear. Replacement is highly recommended."; } document.getElementById('result').innerHTML = ` Wear & Tear Score: ${Math.round(wearAndTearScore)}%
${recommendation} `; } Call Now Button