When a user clicks the Bookmark button, the addtofav function saves the URL
in the browser's bookmark list.
Example
The following output
is produced:
function addtofav(varName){
LinkName=window.document.title;
with (window.parent.table_window) {
linkUrl=eval(varName);
}
window.external.AddFavorite(linkUrl,LinkName);
}