/* - - - - - - - - - - - - - - - - - - - - - - -
 JavaScript
 Tuesday, June 05, 2007 8:02:24 PM
 HAPedit 3.1.11.111
 - - - - - - - - - - - - - - - - - - - - - - - */

          // styleswitching functions
         //color swatch tables
var Swatches = [];
Swatches['Athletic Gold'] = 'EFC901';
Swatches['Bark'] = '78644B';
Swatches['Berry'] = 'c62044';
Swatches['Black'] = '323232';
Swatches['Blueberry'] = '778EC2';
Swatches['Burgundy'] = '513230';
Swatches['Classic Navy'] = '12202B';
Swatches['Dark Green'] = '212E25';
Swatches['Faded Blue'] = '627AB6';
Swatches['Faded Olive'] = '848A66';
Swatches['Forest'] = '395838';
Swatches['Forest - 020'] = '1c342e';
Swatches['Green'] = '436453';
Swatches['Hunter'] = '263c39';
Swatches['Ivory'] = 'EBEAE5';
Swatches['Khaki'] = 'b8aa85';
Swatches['Light Blue'] = 'BED2EB';
Swatches['Light Pink'] = 'F0CAC9';
Swatches['Maroon'] = '673d47';
Swatches['Navy'] = '1D2636';
Swatches['Navy - 040'] = '1D2636';
Swatches['Lilac'] = 'BDB2D4';
Swatches['Orange'] = 'F38129';
Swatches['Oxford'] = 'CACACA';
Swatches['Pistachio'] = 'A6C585';
Swatches['Purple'] = '472A56';
Swatches['Red'] = 'bd172f';
Swatches['Royal'] = '274DA0';
Swatches['Seafoam'] = '86ADAA';
Swatches['Steel Blue'] = '395b75';
Swatches['Steel Grey'] = '797979';
Swatches['Stone'] = 'DACFBC';
Swatches['Sunset Red'] = 'DA4B4F';
Swatches['Turquoise'] = '63D7D7';
Swatches['White'] = 'EAEAEA';
Swatches['Yellow'] = 'F7F0D4';
Swatches['Cardinal - 036'] = '84344a';
Swatches['Purple - 050'] = '4e3984';
Swatches['Orange - 250'] = 'ED7924';
Swatches['Golden Yellow - 150'] = 'F2E536';
Swatches['Grapefruit'] = 'f993cf';
Swatches['Frosted Violet'] = '869aff';
Swatches['Dragon'] = '6f3d45';
Swatches['Hydrant'] = 'f98f0e';
Swatches['Gremlin'] = '4b554d';
Swatches['Bright Blue'] = '0129ea';





var TextSwatches = [];
TextSwatches['Red'] = 'd4201e'; //thread chart 3, top row, 4th from right
TextSwatches['Black'] = '000000'; //thread chart 3, top row, 10th from left
TextSwatches['Blue 3541'] = '2b1c7c'; //thread chart 2, 3541
TextSwatches['Green 5510'] = '1d741d'; //thread chart 2
TextSwatches['Gold 0605'] = 'f3e705'; //thread chart 1
TextSwatches['Navy 3355'] = '001f8f';
TextSwatches['Hunter Green 5335'] = '004f24';
TextSwatches['White 0010'] = 'fffffb';
TextSwatches['Royal 3544'] = '211c76';
TextSwatches['Pink 2560'] = 'ff9cf0';
TextSwatches['Red 1913'] = 'a13943';
TextSwatches['Yellow 0605'] = 'fdfd1c';
TextSwatches['Teal 4101'] = '00f2e6';
TextSwatches['Gray 3062'] = '767b8f';
TextSwatches['Raspberry 1725'] = 'f50002';
TextSwatches['Gold 0824'] = 'e89e00';
TextSwatches['Purple 2910'] = '998cff';
TextSwatches['Violet 3541'] = '000dff';
TextSwatches['Burgundy 2115'] = '40192b';


var Fonts = [];
Fonts['Times'] = 'Times';
Fonts['Helvetica'] = 'helvetica';
Fonts['Georgia'] = 'georgia-georgio';
Fonts['Curlz'] = 'curlz';
Fonts['Sport'] = 'shelley-sport';
Fonts['Straight Block'] = 'bankGothic-straightBlock';
Fonts['Diane'] = 'hogarth-diane';
Fonts['Schoolbook'] = 'schoolbook';
Fonts['Baskerville'] = 'baskerville';
Fonts['Trade Gothic'] = 'tradegothic';
Fonts['Vandenkeere'] = 'vandenkeere';

var previewFont = '';
var previewFontColor = '';

/* Modify Preview Pane when Text Box changes */

function text_options_change() {
    textField = document.getElementsByName('displayText')[0].value;
    previewFont = Fonts[getAValue('font')];
    previewFontColor = TextSwatches[getAValue('textcolor')];
    sIFR.rollback("div#styleswitcher");
    document.getElementById('styleswitcher').innerHTML = '';
    document.getElementById('styleswitcher').innerHTML = textField;
    do_sIFR(previewFont, previewFontColor);
}

function text_color_change() {            
    previewFont = Fonts[getAValue('font')];
    previewFontColor = TextSwatches[getAValue('textcolor')];
    sIFR.rollback("div#styleswitcher"); 
    document.getElementById('styleswitcher').innerHTML = '';
    document.getElementById('styleswitcher').innerHTML = textField;
    do_sIFR(previewFont,previewFontColor);
}  

function do_sIFR(face, color) { 
    var face = "fonts/" + face + ".swf";
    var color = "#" + color;
    if ( typeof sIFR == 'function' ) {
    sIFR.replaceElement("div#styleswitcher", named({sFlashSrc: face, sColor: color,sBgColor:"",sFlashVars:"textalign=center",sWmode:"transparent"}));
    }

}

function switchBackground() {
   if (document.getElementById('styleswitcher') ) {
      document.getElementById('styleswitcher').style.backgroundColor = '#' + Swatches[getAValue('backgroundcolor')];
      document.getElementById('styleswitcher').style.border = "2px solid #" + TextSwatches[getAValue('textcolor')];
    }
    }

function getAValue(elementName) {
   if ( document.getElementsByName(elementName)[0].options[document.getElementsByName(elementName)[0].selectedIndex].innerText )
      { return document.getElementsByName(elementName)[0].options[document.getElementsByName(elementName)[0].selectedIndex].innerText }
   else if  ( document.getElementsByName(elementName)[0].options[document.getElementsByName(elementName)[0].selectedIndex].value )
   { return document.getElementsByName(elementName)[0].options[document.getElementsByName(elementName)[0].selectedIndex].value }
   else if (  document.getElementsByName(elementName)[0].value )
        { return document.getElementsByName(elementName)[0].value }
   else { return false }
 }  
