// ==UserScript==
// @name                Treasury window tweaker
// @version             1.0
// @date                2008-11-18
// @author              Ian Malpass ( ian AT etsyhacks DOT com )
// @namespace           etsy.com
// @description         Ctrl-clicking on a treasury opens up the treasury in a new window with a new name
// @include             http://www.etsy.com/treasury_list.php?room_id=*
// @include             http://www.etsy.com/treasury_list_west.php?room_id=*
// ==/UserScript==

if ( window.name == "etsy_newtreasurylist" ) {
    var d = new Date;
    window.name += ' ' + d.toString() + ', ' + Math.random();
}    
