/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */

/**
 * Calendar popup
 *
 * @category    Scripts
 * @package     Jags
 * @subpackage
 * @author      Ian Eure <ieure@blarg.net>
 * @copyright   © 2009 Buster Marx, Inc. All rights reserved.
 * @version     SVN:   $Id$
 * @filesource
 */

$('#calendar td.day a').click(
    function()
    {
        window.open(this.href, 'calendar',
                    'status=0,toolbar=0,location=0,menubar=0,' +
                    'scrollbars=1,height=950,width=588');
        return false;
    });