function confirmLink(theLink, theMessage)
{
    if (theMessage == '' || typeof(window.opera) != 'undefined') {
        return true;
    }
    var is_confirmed = confirm(theMessage);
    if (is_confirmed) {
        theLink.href += '&is_js_confirmed=1';
		theLink.action += '&is_js_confirmed=1';
    }
    return is_confirmed;
}

function bookmark(url, description)
{
if (navigator.appName=='Microsoft Internet Explorer')
{
window.external.AddFavorite(url, description);
}
else if (navigator.appName=='Netscape')
{
window.sidebar.addPanel(description,url,'');
}
}
