/*
*************************************
  Created by Laszlo Bejczi 2006
  Send me a mail if u could use this code. Anyway its free to reuse.
  fikusz01 at gmail dot com
*************************************
*/

function bookmarksite(title, url){
    if (document.all) window.external.AddFavorite(url, title);
    else if (window.sidebar) window.sidebar.addPanel(title, url, "");
}

function go(url) {
    window.location = url;
}

function Confirm(msg, hova) {
    var response = window.confirm(msg);
    if (response) { go(hova); }
}

function ConfirmOnly(msg) {
    return window.confirm(msg);
}
