/* window.lib.js
 *
 * Copyright (C) 2005, Allan Lykke Christensen, allan@webparation.net
 *
 * Created on 8. September 2005
 */

/**
 * Opens a given URL in a new window.
 *
 * @param url URL to open in the new window.
 */
function callURL(url) {
    window.open(url, 'blank');
}
