App.UI.DOM.appendNewElement("div",p,`Reserving a body will cost ${cashFormat(10000)} up front. Canceling an order will refund your money; however, if a delivered body is rejected, your money will not be refunded. `);
if (V.huskSlaveOrdered===1){
p.append(
App.UI.DOM.link(
`Withdraw body order`,
()=>{
V.huskSlaveOrdered=0;
cashX(10000,"slaveTransfer");
},
[],
"Main"
)
);
}elseif (V.cash<10000){
App.UI.DOM.appendNewElement("span",p,`You lack the credits to place a body reservation.`,"note");