function sm_htmldecode(str) {
var txt = document.createElement('textarea');
txt.innerHTML = str;
return txt.value;
}
var venntov_title = sm_htmldecode("OLIVIA'S | Luxury Furniture, Mirrors, Lighting & More");
var venntov_description = sm_htmldecode("Luxury furniture and homeware straight to your door. Transform your house into a home with designer furniture and luxury home decor from Olivia's.");
if (venntov_title != '') {
document.title = venntov_title;
}
else {
document.title = "Olivia's - Fashion For Your Home";
}
if (document.querySelector('meta[name="description"]') == null) {
var venntov_desc = document.createElement('meta');
venntov_desc.name = "description";
venntov_desc.content = venntov_description;
var venntov_head = document.head;
venntov_head.appendChild(venntov_desc);
} else {
document.querySelector('meta[name="description"]').setAttribute("content", venntov_description);
}