/*  $Id$
 *  
 *  This file is part of the Jamiedia Toolkit.
 *  Copyright 2007/2009, Jamiedia Ltd., http://www.jamiedia.co.uk
 *  
 *  This file may not be used or (re)distributed for any other
 *  purposes than a commercial deployment by Jamiedia of a system
 *  based on the Jamiedia Toolkit. No modifications may be made to
 *  this file by anyone, except for individuals working for Jamiedia Ltd.
 *
 *  File description:
 *
 */ 

// Bookmark the current page
var bookmarkPage = function(_title) {
    var url = window.location;
    var title = (typeof(_title) == "undefined" ? document.title : _title);
    
    var ua=navigator.userAgent.toLowerCase();
    var isSafari = (ua.indexOf('webkit') != -1);
    
    if (window.sidebar) {
        // firefox
        window.sidebar.addPanel(title, url, "");
    }
    else if (isSafari) {
        // Safari
        alert('Press CTRL+D to bookmark this site.');
    }
    else if (window.opera) {
        // opera
        alert('Press CTRL+D to bookmark this site.');
    } 
    else if (document.all) {
        // ie
        window.external.AddFavorite(url, title);
    }
    
    return false;
}
