window.gSimmer = { writeError: function(html){ document.getElementsByTagName('body')[0].innerHTML = html; }, create: function(username, guid, title){ var style = document.createElement('style'); style.innerText = 'body,html{margin: 0;padding: 0;border: 0;width:100%;height:100%;}'; document.head.appendChild(style); var iframe = document.createElement('iframe'); iframe.position = 'fixed'; iframe.style.border = "0"; iframe.style.top = "0"; iframe.style.left = "0"; iframe.style.width = "100%"; iframe.style.height = "100%"; iframe.setAttribute("src", "https://i.simmer.io/@"+ username + "/~" + guid); document.body.appendChild(iframe); document.getElementsByTagName('title')[0].innerText = title; } }; window.gSimmer.writeError("It looks like the hosting subscription has ended for this game. Check out more browser games now!");