// Copyright 2004 - HOCO Enterprises, LLC 
//Beyer for HOCO Enterprises, LLC - July, 2004
var hats = new Array(20);
//**add**
//alert('Hoco Cart Products Script');
//Note: This array used for club_stuff_display too.

hats[0] = '../embimages/hat001-gmc001_red_blu_thumb.jpg';
hats[1] = '../embimages/hat001-pnt002_dft_blu_thumb.jpg';
hats[2] = '../embimages/hat001-pnt001_wht_blk_thumb.jpg';
hats[3] = '../embimages/hat001-gto001_blk_blu_thumb.jpg';
hats[4] = '../embimages/hat001-gto002_dft_blu_thumb.jpg';
hats[5] = '../embimages/hat001-gp0001_wht_blk_thumb.jpg';
hats[6] = '../embimages/hat001-gto004_dft_blk_thumb.jpg';
hats[7] = '../embimages/hat001-roygto_dft_kki_thumb.jpg';
hats[8] = '../embimages/stf003-dft003_dft_red_thumb.jpg';
hats[9] = '../embimages/stf004-dft004_dft_red_thumb.jpg';
hats[10] = '../embimages/hat001-poci18_dft_kki_thumb.jpg';
hats[11] = '../embimages/hat017-poci17_dft_red_thumb.jpg';
hats[12] = '../embimages/hat001-tri001_dft_blk_thumb.jpg';
hats[13] = '../embimages/hat001-jud001_dft_blk_thumb.jpg';
hats[14] = '../embimages/hat001-gp0002_wbk_blk_thumb.jpg';
hats[15] = '../embimages/hat001-gxp001_dft_blk_thumb.jpg';

//Hat Designs (array#, thread color, hat color) 
 function hat_designs(entry,thread,hatcolor){
  if (hatcolor == '0'){hats[entry] = hats[entry].substr(0,27) + thread + hats[entry].substr(30,hats[entry].length);}
  if (thread == '0' && entry != 8 && entry != 9){hats[entry] = hats[entry].substr(0,31) + hatcolor + hats[entry].substr(34,hats[entry].length);}
  if (entry == 8 || entry == 9){
     find_stf = document.images[hats[entry].substr(13,6)].src.indexOf('stf');
     find_stf = find_stf + 7;
     hats[entry] = hats[entry].substr(0,20) + document.images[hats[entry].substr(13,6)].src.substr(find_stf,11) + hatcolor + hats[entry].substr(34,hats[entry].length);
     document.images[hats[entry].substr(13,6)].src = hats[entry]; 
  } 
  else {
     document.images[hats[entry].substr(20,6)].src = hats[entry];
  }
//  document.images["pnt001"].src = hats[2];
}

//Hat Cart Display (For debugging purposes only)
 function display_hat(hat){document.write(hat.substr(13,9));
}

// For non-Clubs
var see_designs = new Array(20);
//**add**
see_designs[0] = '../images/space.gif';
see_designs[1] = '../embimages/gmc001_sm_red_thumb.jpg';
see_designs[2] = '../embimages/pnt002_med_thumb.jpg';
see_designs[3] = '../embimages/pnt001_med_thumb.jpg';
see_designs[4] = '../embimages/gto001_lg_wh_thumb.jpg';
see_designs[5] = '../embimages/gto001_lg_red_thumb.jpg';
see_designs[6] = '../embimages/gto001_lg_blk_thumb.jpg';
see_designs[7] = '../embimages/gto002_lg_thumb.jpg';
see_designs[8] = '../embimages/gp0002_lg_wbk_thumb.jpg';
see_designs[9] = '../embimages/gp0002_sm_bwh_thumb.jpg';
see_designs[10] = '../embimages/gto004_sm_thumb.jpg';
see_designs[11] = '../embimages/jud001_sm_thumb.jpg';
see_designs[12] = '../embimages/build_car_thumb.jpg';

// For Clubs
var see_club_designs = new Array(10);
//**add**
see_club_designs[0] = '../images/space.gif';
see_club_designs[1] = '../embimages/roygto_sm_thumb.jpg';
see_club_designs[2] = '../embimages/poci00_sm_thumb.jpg';


// For Clubs - Sleeve Designs for TSH013
var see_sleeve_designs = new Array(10);
//**add**
see_sleeve_designs[0] = '../images/space.gif';
see_sleeve_designs[1] = '../embimages/tsh013-poci00_thumb.jpg';
see_sleeve_designs[2] = '../embimages/tsh013-roygto_thumb.jpg';

//For non-Clubs
var jacket_designs = new Array(20);
var jkt_color = '';

function change_color(item, color){
    jkt_color = color;
    item2 = item;
    if (item == "msw001" || item == "msw002" || item == "msp001" || item == "msp002"){item2 = item + '_bldcar'}
    if (item.substr(0,3) != 'msp' && item.substr(0,3) != 'msw' && item.substr(0,3) != 'tsh'){
       document.images[item + '_top_front'].src = '../embimages/' + item2 + '_ft_top' + jkt_color + '_thumb.jpg';
       document.images[item + '_bot_front'].src = '../embimages/' + item2 + '_ft_bot' + jkt_color + '_thumb.jpg'
    }
    if (item.substr(0,3) != 'tsh'){
       find_item = document.images[item + '_mid_front'].src.indexOf(item);
       findchgft = document.images[item + '_mid_front'].src.indexOf('_ft_');
 
       if (item.substr(0,3) == 'swt'){
          findchglg = document.images[item + '_mid_front'].src.indexOf('_lg_');
          if (findchglg > 0){findchgft = findchglg}
       }
       chgdiff = findchgft - find_item; 
// chgdiff > 6 means that customer selected item already and is now changing color
       if (chgdiff > 6){
          document.images[item + '_mid_front'].src = '../embimages/' + document.images[item + '_mid_front'].src.substr(find_item,20)  + jkt_color + '_thumb.jpg';
       }
       else {
          document.images[item + '_mid_front'].src = '../embimages/' + item2 + jacket_designs[0].jkt_front + jkt_color + '_thumb.jpg';
       }
    }
    if (item.substr(0,3) == 'jkt'){ 
       document.images[item + '_top_back'].src = '../embimages/' + item + '_bk_top' + jkt_color + '_thumb.jpg';
       findchgbk = document.images[item + '_mid_back'].src.indexOf('_bk_');
       chgdiff = findchgbk - find_item; 
       if (chgdiff > 6){
          document.images[item + '_mid_back'].src = '../embimages/' + document.images[item + '_mid_back'].src.substr(find_item,20)  + jkt_color + '_thumb.jpg';
       }
       else {
          document.images[item + '_mid_back'].src = '../embimages/' + item + jacket_designs[0].jkt_back + jkt_color + '_thumb.jpg';
       }
       document.images[item + '_bot_back'].src = '../embimages/' + item + '_bk_bot' + jkt_color + '_thumb.jpg';
    }
    if (item.substr(0,3) == 'tsh'){
       if (item == "tsh080"){item2 = "pnt080"}
       document.images[item + '_top_front'].src = '../embimages/tsh001_' + item2 + jkt_color + '_thumb.jpg';       
    } 
}

populate_jackets();

function populate_jackets(){
//**add**
  jacket_designs[0] = new display_jacket('_ft_mid', '_bk_mid');
  jacket_designs[1] = new display_jacket('_gmc001_ft_mid', '_gmc001_bk_mid');
  jacket_designs[2] = new display_jacket('_pnt002_ft_mid', '_pnt002_bk_mid');
  jacket_designs[3] = new display_jacket('_pnt001_ft_mid', '_pnt001_bk_mid');
  jacket_designs[4] = new display_jacket('_gto001_ft_wht', '_gto001_bk_wht');
  jacket_designs[5] = new display_jacket('_gto001_ft_red', '_gto001_bk_red');
  jacket_designs[6] = new display_jacket('_gto001_ft_blk', '_gto001_bk_blk');
  jacket_designs[7] = new display_jacket('_gto002_ft_mid', '_gto002_bk_mid');
  jacket_designs[8] = new display_jacket('_gp0002_ft_wbk', '_gp0001_bk_wbk');
  jacket_designs[9] = new display_jacket('_gp0002_ft_bwh', '_gp0001_bk_bwh');
  jacket_designs[10] = new display_jacket('_gto004_ft_mid', '_gto004_bk_mid');
  jacket_designs[11] = new display_jacket('_jud001_ft_mid', '_jud001_bk_mid');
  jacket_designs[12] = new display_jacket('_bldcar_ft_mid', '_bldcar_bk_mid');
}

//For Clubs
var club_jacket_designs = new Array(10);
var club_jkt_color = '';

function change_club_color(c_item, c_color){
    club_jkt_color = c_color;
    item2 = c_item;
    if (c_item.substr(0,3) != 'msp' && c_item.substr(0,3) != 'msw' && c_item.substr(0,3) != 'tsh'){
       document.images[c_item + '_top_front'].src = '../embimages/' + item2 + '_ft_top' + club_jkt_color + '_thumb.jpg';
       document.images[c_item + '_bot_front'].src = '../embimages/' + item2 + '_ft_bot' + club_jkt_color + '_thumb.jpg'
    }
    if (c_item.substr(0,3) == 'tsh'){
       document.images[c_item + '_top_front'].src = '../embimages/' + item2 + '-poci00' + club_jkt_color + '_thumb.jpg';
    }
    if (c_item.substr(0,3) != 'tsh'){
       findc_item = document.images[c_item + '_mid_front'].src.indexOf(c_item);
       findchgft = document.images[c_item + '_mid_front'].src.indexOf('_ft_');
       if (c_item.substr(0,3) == 'swt'){
          findchglg = document.images[c_item + '_mid_front'].src.indexOf('_lg_');
          if (findchglg > 0){findchgft = findchglg}
       }	
       chgdiff = findchgft - findc_item; 
// chgdiff > 6 means that customer selected item already and is now changing color
       if (chgdiff > 6){
          document.images[c_item + '_mid_front'].src = '../embimages/' + document.images[c_item + '_mid_front'].src.substr(findc_item,20)  + club_jkt_color + '_thumb.jpg';
       }
       else {
          document.images[c_item + '_mid_front'].src = '../embimages/' + item2 + club_jacket_designs[0].jkt_front + club_jkt_color + '_thumb.jpg';
       } 
    }
    if (c_item.substr(0,3) == 'jkt'){ 
       document.images[c_item + '_top_back'].src = '../embimages/' + c_item + '_bk_top' + club_jkt_color + '_thumb.jpg';
       findchgbk = document.images[c_item + '_mid_back'].src.indexOf('_bk_');
       chgdiff = findchgbk - findc_item; 
       if (chgdiff > 6){
          document.images[c_item + '_mid_back'].src = '../embimages/' + document.images[c_item + '_mid_back'].src.substr(findc_item,20)  + club_jkt_color + '_thumb.jpg';
       }
       else {
          document.images[c_item + '_mid_back'].src = '../embimages/' + c_item + club_jacket_designs[0].jkt_back + club_jkt_color + '_thumb.jpg';
       }
       document.images[c_item + '_bot_back'].src = '../embimages/' + c_item + '_bk_bot' + club_jkt_color + '_thumb.jpg';
    }
}

populate_club_jackets();

function populate_club_jackets(){
//**add**
  club_jacket_designs[0] = new display_jacket('_ft_mid', '_bk_mid');
  club_jacket_designs[1] = new display_jacket('_roygto_ft_mid', '_roygto_bk_mid');
  club_jacket_designs[2] = new display_jacket('_poci00_ft_mid', '_poci00_bk_mid');
}

function display_jacket(front, back){
   this.jkt_front = front;
   this.jkt_back = back
}

function display_shirt(front){
   this.jkt_front = front;
}

// For non-Clubs
//All Designs (item, selection list number,front or back) 
function all_designs(item, selected_item, frt_bk){
  if (selected_item > 0){
//**add** (change selected item # below)
     if (item.substr(0,3) == "msp" || item.substr(0,3) == "msw"){selected_item = 12}
     if (item.substr(0,3) != "msp" && item.substr(0,3) != "msw"){
        clrstr2 = '_thumb';
        findclr2 = document.images[item + '_top_front'].src.indexOf(clrstr2);
        cstr2 = document.images[item + '_top_front'].src.substr(findclr2 - 3, 3);
//Note: Add new colors here
        if (cstr2 == 'gry' || cstr2 == 'blk' || cstr2 == 'blu'
         || cstr2 == 'org' || cstr2 == 'ppl' || cstr2 == 'gld'
         || cstr2 == 'wht' || cstr2 == 'sgr' || cstr2 == 'red'
         || cstr2 == 'nvy' || cstr2 == 'grn' || cstr2 == 'bur')
        {jkt_color2 = '_' + cstr2}
     }
     if (frt_bk == 'frt' || frt_bk == 'lg'){
        document.images[item + '_front'].src = see_designs[selected_item];
	if (item.substr(0,3) != "msp" && item.substr(0,3) != "msw"){
           document.images[item + '_mid_front'].src = '../embimages/' + item + jacket_designs[selected_item].jkt_front + jkt_color2 + '_thumb.jpg';
        }
        if (frt_bk == 'lg'){document.images[item + '_mid_front'].src = '../embimages/' + item + jacket_designs[selected_item].jkt_front.substr(0,7) + '_lg' + jacket_designs[selected_item].jkt_front.substr(10,12) + jkt_color2 + '_thumb.jpg'}   
        if (item == 'jkt004' && selected_item == 5
          || item == 'jkt003' && selected_item == 2
          || item == 'jkt004' && selected_item == 2
         ){document.images[item + '_mid_front'].src = '../embimages/' + item + jacket_designs[selected_item].jkt_front + jkt_color2 + '_thumb.gif'}
     }
     if (frt_bk == 'bk'){document.images[item + "_back"].src = see_designs[selected_item];
        document.images[item + '_mid_back'].src = '../embimages/' + item + jacket_designs[selected_item].jkt_back + jkt_color2 + '_thumb.jpg';
        if (item == 'jkt004' && selected_item == 5){document.images[item + '_mid_back'].src = '../embimages/' + item + jacket_designs[selected_item].jkt_back + jkt_color2 + '_thumb.gif'}
     }
  }
}

// For Clubs
//All Designs (item, selection list number,front or back) 
function all_club_designs(c_item, c_selected_item, c_frt_bk){
  if (c_selected_item > 0){
//**add** (change selected item # below)
     clrstr2 = '_thumb';
     if (c_frt_bk == 'stf'){
       findclr2 = document.images[c_item].src.indexOf(clrstr2);
       cstr2 = document.images[c_item].src.substr(findclr2 - 3, 3);
       document.images[c_item].src = '../embimages/' + c_item + '-' + see_club_designs[c_selected_item].substr(13,6) + document.images[c_item].src.substr(findclr2 - 8, 8) + '_thumb.jpg';
       if (c_item == 'stf003' || c_item == 'stf004'){
          document.images[c_item + '_front'].src = see_club_designs[c_selected_item]; 
       }
     }
     else {
       findclr2 = document.images[c_item + '_top_front'].src.indexOf(clrstr2);
       cstr2 = document.images[c_item + '_top_front'].src.substr(findclr2 - 3, 3);
     }
//Note: Add new colors here
     if (cstr2 == 'gry' || cstr2 == 'blk' || cstr2 == 'blu'
      || cstr2 == 'org' || cstr2 == 'ppl' || cstr2 == 'gld'
      || cstr2 == 'wht' || cstr2 == 'sgr' || cstr2 == 'red'
      || cstr2 == 'nvy' || cstr2 == 'grn' || cstr2 == 'slv'
      || cstr2 == 'ldn' || cstr2 == 'bur')
       {jkt_color2 = '_' + cstr2}

     if (c_frt_bk == 'tsh'){
        document.images[c_item + '_front'].src = see_sleeve_designs[c_selected_item];
        document.images[c_item + '_top_front'].src = '../embimages/' + c_item + '-' + see_club_designs[c_selected_item].substr(13,6) + document.images[c_item + '_top_front'].src.substr(findclr2 - 4, 4) + '_thumb.jpg';
     }

     if (c_frt_bk == 'frt' || c_frt_bk == 'lg'){
        document.images[c_item + '_front'].src = see_club_designs[c_selected_item];
        document.images[c_item + '_mid_front'].src = '../embimages/' + c_item + club_jacket_designs[c_selected_item].jkt_front + jkt_color2 + '_thumb.jpg';
        if (c_frt_bk == 'lg'){document.images[c_item + '_mid_front'].src = '../embimages/' + c_item + club_jacket_designs[c_selected_item].jkt_front.substr(0,7) + '_lg' + club_jacket_designs[c_selected_item].jkt_front.substr(10,12) + jkt_color2 + '_thumb.jpg'}   
//For pics that blend colors - that changed to gif
//        if (c_item == 'jkt004' && c_selected_item == 2
//          || c_item == 'jkt003' && c_selected_item == 2
//         ){document.images[c_item + '_mid_front'].src = '../embimages/' + c_item + club_jacket_designs[c_selected_item].jkt_front + jkt_color2 + '_thumb.gif'}
     }
     if (c_frt_bk == 'bk'){document.images[c_item + "_back"].src = see_club_designs[c_selected_item];
        document.images[c_item + '_mid_back'].src = '../embimages/' + c_item + club_jacket_designs[c_selected_item].jkt_back + jkt_color2 + '_thumb.jpg';
//        if (item == 'jkt004' && c_selected_item == 5){document.images[c_item + '_mid_back'].src = '../embimages/' + c_item + club_jacket_designs[c_selected_item].jkt_back + jkt_color2 + '_thumb.gif'}
     }
  }
}

//**add**
//Product Descriptions for Cart 
 function hoco_cart_product(product,clothing_type){
  if (product == 'gmc001'){
   prod_text = '<b>GMC</font><font size=2>&reg;</font> Logo (One Color)</b>';
   prod_text += '<img src="../images/space.gif" width=10 height=1">';
   prod_text += '<br>This is a single color, GMC Logo that is still used today by GM.<br>';
   prod_text += 'Available in thread colors: ';
   prod_text += '<a href="javascript:' + clothing_type + "(0,'red',0)" + '"><font color="#F00000" size=4>Red</font></a>';
   prod_text += ' and ';
   prod_text += '<a href="javascript:' + clothing_type + "(0,'blk',0)" + '"><font color="#000000" size=4>Black</font></a><br>';
   }
  if (product == 'gmc002'){
   prod_text = '<b>GMC</font><font size=2>&reg;</font> (Two Tone) Logo</b>';
   prod_text += '<img src="../images/space.gif" width=10 height=1">';
   prod_text += "<br>This GMC Logo is the most popular and is still on today's production SUV's and professional vehicles.<br>";
   prod_text += 'Available only in thread colors shown: <font color="red">Red</font> and <font color="#B0B0B0">White</font>.<br>';
   }
  if (product == 'gmc003'){
   prod_text = '<b>GMC</font><font size=2>&reg;</font> (Two Tone) Logo for GMC Trucks</b>';
   prod_text += '<img src="../images/space.gif" width=10 height=1">';
   prod_text += '<br>Specifically for GMC Trucks, the popular GMC Logo is accmmodated with the word "Truck".<br>';
   prod_text += 'Available only in thread colors shown: <font color="red">Red</font> and <font color="#B0B0B0">White</font>.<br>';
   }
 if (product == 'pnt001'){
   prod_text = '<b>Pontiac</font><font size=2>&reg;</font> Logo (One Color) with Arrowhead</b> <img src="../images/space.gif" width=10 height=1">';
   prod_text += '<br>This is a one color, arrowhead with the name "Pontiac". This script was used for many years from the mid-80' + "'" + 's to current day. Although Pontiac has retired the script, it is still the most popular. <br>';
   prod_text += 'Available only in thread color shown: <font color="#B0B0B0">White</font>.<br>';
   }
 if (product == 'pnt002'){
   prod_text = '<b>Pontiac</font><font size=2>&reg;</font> Logo (Two Tone) with Arrowhead</b> <img src="../images/space.gif" width=10 height=1">';
   prod_text += '<br>This is a two color, arrowhead with the name "Pontiac". This script was used for many years from the mid-80' + "'" + 's to current day. Although Pontiac has retired the script, it is still the most popular. <br>';
   prod_text += 'Available only in the thread colors shown: <font color="red">Red</font> and <font color="#B0B0B0">White</font>.<br>';
   }
 if (product == 'gto001'){
   prod_text = '<b>GTO</font></b><font size=1>TM</font><font class="RegularText"><b> Emblem (One Color)</b> <img src="../images/space.gif" width=10 height=1">';
   prod_text += '<br>This is a one color, "GTO" Emblem that was on the 1968 to 1973 cars. Simple, and yet the name says it all.<br>';
   prod_text += 'Available in thread colors: ';
   prod_text += '<a href="javascript:' + clothing_type + "(3,'red',0)" + '"><font color="#F00000" size=4>Red</font></a>';
   prod_text += ', ';
   prod_text += '<a href="javascript:' + clothing_type + "(3,'blk',0)" + '"><font color="#000000" size=4>Black</font></a>';
   prod_text += ' and ';
   prod_text += '<a href="javascript:' + clothing_type + "(3,'wht',0)" + '"><font color="#B0B0B0" size=4>White</font></a><br>';
   }
 if (product == 'gto002'){
   prod_text = '<b>GTO</font></b><font size=1>TM</font><font class="RegularText"><b> 6.5 Litre Emblem</b> <img src="../images/space.gif" width=10 height=1">';
   prod_text += '<br>This is a three color, 6.5 Litre Emblem that is similar to the one on the 1964 to 1967 cars. This is the most notable of the GTO emblems.<br>';
   prod_text += 'Show your GTO Muscle Pride with this Red, White, and Blue hat!<br>';
   prod_text += 'Available only in the thread colors shown: <font color="red">Red</font>, <font color="#B0B0B0">White</font>, and <font color="blue">Blue</font>.<br>';
   }
 if (product == 'gp0001'){
   prod_text = '<b>Grand Prix</font></b><font size=1>TM</font><font class="RegularText"><b>Script Emblem</b> <img src="../images/space.gif" width=10 height=1">';
   prod_text += "<br>The popular Grand Prix Script from the 70's is captured!<br>";  
   prod_text += 'This is the one-color, Script Emblem that was on the 1971 to 1978 cars.<br>';
   prod_text += 'Available only in thread color shown: <font color="#B0B0B0">White</font>.<br>';
   }
 if (product == 'gp0002'){
   prod_text = '<b>Grand Prix</font></b><font size=1>TM</font><font class="RegularText"><b> (GP) Emblem</b> <img src="../images/space.gif" width=10 height=1">';
   prod_text += '<br>Here is one of the very few classic Grand Prix products available!<br>';  
   prod_text += 'This is a two color, "GP" Emblem that was on the 1964 to 1968 cars.<br>';
   prod_text += 'Available in thread colors: ';
   prod_text += '<a href="javascript:' + clothing_type + "(14,'bwh',0)" + '"><font color="#000000" size=4>Black/</font><font color="#B0B0B0" size=4>White</font></a>';
   prod_text += ' and ';
   prod_text += '<a href="javascript:' + clothing_type + "(14,'wbk',0)" + '"><font color="#B0B0B0" size=4>White/</font><font color="#000000" size=4>Black</font></a> ';
   prod_text += '(2nd Color is the fill color)<br>';
   }
 if (product == 'gto004'){
   prod_text = '<b>GTO</font></b><font size=1>TM</font><font class="RegularText"><b> 5.7 Litre Emblem</b> <img src="../images/space.gif" width=10 height=1">';
   prod_text += '<br>This is a two color, 5.7 Litre Emblem like the on the 2004 car.<br>';
   prod_text += 'Pontiac&reg; brought it back. Now you can wear it too!<br>';
   prod_text += 'Available only in thread colors shown: <font color="#B0B0B0">White</font> and <font color="#404040" size=4>Gray</font>.<br>';
   }
 if (product == 'poci00' || product == 'poci17' || product == 'poci18'){
   prod_text = '<b>Pontiac-Oakland (POCI)</font></b><font class="RegularText"><b> Club Logo</b> <img src="../images/space.gif" width=10 height=1">';
   prod_text += '<br>This is the official, five color, club logo used by Pontiac-Oakland Club International and recognizing GMC.<br>';
   prod_text += 'Available only in thread colors shown.<br>';
   }
 if (product == 'roygto'){
   prod_text = '<b>ROYAL GTOs</font></b><font class="RegularText"><b> Club Logo</b> <img src="../images/space.gif" width=10 height=1">';
   prod_text += '<br>This is the official, six color, club logo used by ROYAL GTOs Club of Maryland.<br>';
   prod_text += 'Available only in thread colors shown. (Shoes and "The" are <font color="#000000" size=4>Black/</font> or  <font color="#B0B0B0">White</font> depending on background.)<br>';
   }
 if (product == 'tri001'){
   prod_text = '<b>Pontiac </font><font size=2>&reg;</font></b><font class="RegularText"><b> Tri-Power Emblem</b> <img src="../images/space.gif" width=10 height=1">';
   prod_text += '<br>Used on the 57 and 58 Pontiacs to indicate the power under the hood. A destict emblem for a powerful engine used through 1966.<br>';
   prod_text += 'Available only in thread colors shown.<br>';
   }
 if (product == 'jud001'){
   prod_text = '<b>Pontiac GTO</font></b><font class="RegularText"><b> Judge Emblem</b> <img src="../images/space.gif" width=10 height=1">';
   prod_text += '<br>Here comes the Judge!<br>';
   prod_text += 'Available only in thread colors shown.<br>';
   }
 if (product == 'gxp001'){
   prod_text = '<b>Pontiac Performance</font></b><font class="RegularText"><b> - The GXP Series</b> <img src="../images/space.gif" width=10 height=1">';
   prod_text += '<br>The latest performance series from Pontiac.<br>';
   prod_text += 'Available only in thread colors shown.<br>';
   }
 document.write(prod_text); 
}


