{
if(pocetStroju < 2){
return htl.html `<h3> Pro promo cenu vyberte alespoň dva stroje z tabulky výše </h3>
<h3> Vybráno strojů: ${pocetStroju} </h3>
<h3> Cena: ${standardPrice} </h3>
`
} else {
return htl.html `
<h3> Promo cena aktivována :-) </h3>
<h3> Standardní cena ${standardPrice}</h3>
<h3> Promo cena ${promotionPrice}</h3>
<marquee
direction="down"
width="350"
height="100"
behavior="alternate"
style="border:solid">
<marquee behavior="alternate"> <h1> Ušetříte ${standardPrice - promotionPrice} <h1>
</marquee>`
}
}