Помогите незнающему. вот есть скрипт. работает все, но мне нужно что после того как завершиться сценарий страница закрылась
// ==============
// ==Like All==
body = document.body;
if(body != null) {
div = document.createElement("div");
div.setAttribute('id','like2');
div.style.position = "fixed";
div.style.display = "block";
div.style.width = "225px";
div.style.opacity= 0.90;
div.style.bottom = "+142px";
div.style.left = "+6px";
div.style.backgroundColor = "#ffffff";
div.style.border = "2px solid #000000";
div.style.padding = "2px";
div.innerHTML = "<img src='http://linuxoid.com.ua/wp-content/uploads/2014/01/ask_like.png' width='16' height='14' align='absmiddle' /> <a onclick='IstviisLike()'>3 лайкы</a>"
body.appendChild(div);
unsafeWindow.IstviisLike = function() {
setTimeout(function () {document.getElementsByClassName("like hintable")[0].click();}, 100);
setTimeout(function () {document.getElementsByClassName("like hintable")[0].click();}, 200);
setTimeout(function () {document.getElementsByClassName("like hintable")[0].click();}, 300);
buttons = document.getElementsByTagName("button");
for(i = 0; i < buttons.length; i++) {
myClass = buttons[i].getAttribute("class");
if(myClass != null && myClass.indexOf("like") >= 0)
if(buttons[i].getAttribute("name") == "likern false;")
buttons[i].click();
}
};
}