//--------------------------------------------------------------------------------
//--------------------------------------------------------------------------------
/* Configuration Settings */

//--------------------------------------------------------------------------------
// age category start years

var JR_yr = 1999;
var SR_yr = 1995;

//--------------------------------------------------------------------------------
// image locations

var pokemon_images_loc = "images/pokemon/large/";
var unown_images_loc   = "images/pokemon/unown/small/";
var catchme_images_loc = "images/pokemon/catchme/";
var cursor_images_loc  = "images/pokemon/cursor/";
var event_images_loc   = "images/event/";
var rarity_images_loc  = "images/rarity/";
var card_images_loc    = "images/cards/";
var menu_images_loc    = "images/menu/";
var vdb_images_loc     = "images/vdb/";
var tab_images_loc     = "images/tab/";

//--------------------------------------------------------------------------------
// other locations

// BASE element is set in the launch file "head" section
try      {var base_loc = document.getElementById("pokemon_base").href;}
catch(e) {var base_loc = '';}

// absolute location is needed for some functions and website context managers
var home_loc = "";

//--------------------------------------------------------------------------------
// personalized window picture html - upper-left window image (default if none)

var winpic_html = '';

//--------------------------------------------------------------------------------
// personalized footnote html
// goes on the View -> Deck List page

var footnote_html = '<div style="font-family:verdana,arial,helvetica; font-size:12px;" font:10px id="footnote" align="center">Decklist Completion Program by SteveP available from Pok&eacute;Beach at: <a href="http://pokebeach.com/tcg/deck-list" target="_blank">http://pokebeach.com/tcg/deck-list</a></div>';

//--------------------------------------------------------------------------------
// personalized page background style

var background_style = '';

//--------------------------------------------------------------------------------
// PokeBeach determination - don't include serebii - do different base tag in save_deck

var is_pokebeach = (window.location.hostname == 'www.pokebeach.com');
is_pokebeach = true;
