/* Logic to add bookmark */

var bookmarkurl=window.document.location;
var bookmarktitle=window.document.forms.item(0);
function addbookmark()
{
    if (document.all)
        window.external.AddFavorite(bookmarkurl, bookmarktitle);
}
