Source: js/window/href_goto.js

/*
# ***** BEGIN LICENSE BLOCK *****
# Assets Library - The open source PHP/JavaScript/CSS library of Les Ateliers Pierrot
# Copyleft (c) 2013-2014 Pierre Cassat and contributors
# <www.ateliers-pierrot.fr> - <contact@ateliers-pierrot.fr>
# License GPL-3.0 <http://www.opensource.org/licenses/gpl-3.0.html>
# Sources <http://github.com/atelierspierrot/assets-library>
#
# Ce programme est un logiciel libre distribué sous licence GNU/GPL.
#
# ***** END LICENSE BLOCK ***** */


/**
 * Simulate a clic link href
 */
function href_goto(url, opener, close) {
    if (!url || !_is_url) { return; }
    if (opener) {
        window.opener.location = url;
        window.opener.focus();
        if (close) { window.close(); }
    }
    else window.location = url;
}

// Endfie