

function dollarValue(n)
{
  var Bstr = "";
  var b = n * 100;
  var c = Math.round(b);
  var Astr = c.toString();
  var Alength = Astr.length;
  if (Alength <= 2) Bstr = Bstr + ".";
  var dot = Alength - 3;
  var counter = 0;
    while (counter < Alength )
    {
      Bstr = Bstr + Astr.charAt(counter);
      if (counter == dot) Bstr = Bstr + ".";
      counter = counter + 1;
    }
  var d = Bstr;
  return d;
  }

function changecolors(){
	var type = document.gatherer.line1_type.value;

if(type== "Plain Tee 50/50"){
	document.gatherer.colorpic.value="5050.jpg";
	document.gatherer.itemcolor.options.length=0;
	document.gatherer.itemcolor.options[0]=new Option("Navy", "Navy");
	document.gatherer.itemcolor.options[1]=new Option("Kelly", "Kelly");	
	document.gatherer.itemcolor.options[2]=new Option("Royal Blue", "Royal Blue");
	document.gatherer.itemcolor.options[3]=new Option("Denim", "Denim");
	document.gatherer.itemcolor.options[4]=new Option("Light Blue", "Light Blue");
	document.gatherer.itemcolor.options[5]=new Option("Natural", "Natural");
	document.gatherer.itemcolor.options[6]=new Option("Burgundy", "Burgundy");
	document.gatherer.itemcolor.options[7]=new Option("Orange Poppy", "Orange Poppy");
	document.gatherer.itemcolor.options[8]=new Option("Black", "Black");
	document.gatherer.itemcolor.options[9]=new Option("Yellow", "Yellow");
	document.gatherer.itemcolor.options[10]=new Option("Kiwi", "Kiwi");
	document.gatherer.itemcolor.options[11]=new Option("Azalea", "Azalea");
	document.gatherer.itemcolor.options[12]=new Option("Classic Pink", "Classic Pink");
	document.gatherer.itemcolor.options[13]=new Option("Athletic Heather", "Athletic Heather");
	document.gatherer.itemcolor.options[14]=new Option("Ash", "Ash");
	document.gatherer.itemcolor.options[15]=new Option("Red", "Red");
	document.gatherer.itemcolor.options[16]=new Option("Purple", "Purple");
	document.gatherer.itemcolor.options[17]=new Option("Forrest Green", "Forrest Green");
	document.gatherer.itemcolor.options[18]=new Option("Chocolate", "Chocolate");
	document.gatherer.itemcolor.options[19]=new Option("Orange", "Orange");
	document.gatherer.itemcolor.options[20]=new Option("White", "White");
	document.gatherer.itemcolor.options[21]=new Option("Gold", "Gold");
	document.gatherer.itemcolor.options[22]=new Option("Khaki", "Khaki");
    document.gatherer.itemcolor.options[23]=new Option("Jade", "Jade");

	
}

if(type== "Plain Tee 100%"){
	document.gatherer.colorpic.value="100cotton.jpg";
	document.gatherer.itemcolor.options.length=0;
	document.gatherer.itemcolor.options[0]=new Option("Navy", "Navy");
	document.gatherer.itemcolor.options[1]=new Option("Kelly", "Kelly");	
	document.gatherer.itemcolor.options[2]=new Option("Royal Blue", "Royal Blue");
	document.gatherer.itemcolor.options[3]=new Option("Denim", "Denim");
	document.gatherer.itemcolor.options[4]=new Option("Light Blue", "Light Blue");
	document.gatherer.itemcolor.options[5]=new Option("Natural", "Natural");
	document.gatherer.itemcolor.options[6]=new Option("Burgundy", "Burgundy");
	document.gatherer.itemcolor.options[7]=new Option("Orange Poppy", "Orange Poppy");
	document.gatherer.itemcolor.options[8]=new Option("Black", "Black");
	document.gatherer.itemcolor.options[9]=new Option("Banana", "Banana");
	document.gatherer.itemcolor.options[10]=new Option("Kiwi", "Kiwi");
	document.gatherer.itemcolor.options[11]=new Option("Azalea", "Azalea");
	document.gatherer.itemcolor.options[12]=new Option("Classic Pink", "Classic Pink");
	document.gatherer.itemcolor.options[13]=new Option("Athletic Heather", "Athletic Heather");
	document.gatherer.itemcolor.options[14]=new Option("Ash", "Ash");
	document.gatherer.itemcolor.options[15]=new Option("Red", "Red");
	document.gatherer.itemcolor.options[16]=new Option("Purple", "Purple");
	document.gatherer.itemcolor.options[17]=new Option("Cornflower", "Cornflower");
	document.gatherer.itemcolor.options[18]=new Option("Forrest Green", "Forrest Green");
	document.gatherer.itemcolor.options[19]=new Option("Chocolate", "Chocolate");
	document.gatherer.itemcolor.options[20]=new Option("Orange", "Orange");
	document.gatherer.itemcolor.options[21]=new Option("White", "White");
	document.gatherer.itemcolor.options[22]=new Option("Gold", "Gold");
	document.gatherer.itemcolor.options[23]=new Option("Khaki", "Khaki");
	
}

if(type== "Ladies Tank Top"){
	document.gatherer.colorpic.value="ladiestank.jpg";
	document.gatherer.itemcolor.options.length=0;
	document.gatherer.itemcolor.options[0]=new Option("Baby Blue", "Baby Blue");
	document.gatherer.itemcolor.options[1]=new Option("Pink", "Pink");	
	document.gatherer.itemcolor.options[2]=new Option("White", "White");
	document.gatherer.itemcolor.options[3]=new Option("Gold", "Gold");
	document.gatherer.itemcolor.options[4]=new Option("Black", "Black");
	document.gatherer.itemcolor.options[5]=new Option("Kelly", "Kelly");
	document.gatherer.itemcolor.options[6]=new Option("Red", "Red");
}

if(type== "Pullover Hoody"){
	document.gatherer.colorpic.value="pullover.jpg";
	document.gatherer.itemcolor.options.length=0;
	document.gatherer.itemcolor.options[0]=new Option("Light Blue", "Light Blue");
	document.gatherer.itemcolor.options[1]=new Option("Oxford", "Oxford");
	document.gatherer.itemcolor.options[2]=new Option("Black", "Black");
	document.gatherer.itemcolor.options[3]=new Option("Birch", "Birch");
	document.gatherer.itemcolor.options[4]=new Option("Vintage Navy", "Vintage Navy");
	document.gatherer.itemcolor.options[5]=new Option("Maroon", "Maroon");
	document.gatherer.itemcolor.options[6]=new Option("Red", "Red");
	document.gatherer.itemcolor.options[7]=new Option("Forrest Green", "Forrest Green");
	document.gatherer.itemcolor.options[8]=new Option("Royal", "Royal");
	document.gatherer.itemcolor.options[9]=new Option("Burnt Orange", "Burnt Orange");
	document.gatherer.itemcolor.options[10]=new Option("White", "White");
	document.gatherer.itemcolor.options[11]=new Option("Gold", "Gold");
	document.gatherer.itemcolor.options[12]=new Option("Safety Green", "Safety Green");
	document.gatherer.itemcolor.options[13]=new Option("Navy", "Navy");
	document.gatherer.itemcolor.options[14]=new Option("Deep Purple", "Deep Purple");
	document.gatherer.itemcolor.options[15]=new Option("Pink", "Pink");
	document.gatherer.itemcolor.options[16]=new Option("Vintage Forest", "Vintage Forest");



}

if(type== "Zip Up Hoody"){
	document.gatherer.colorpic.value="zipup.jpg";
	document.gatherer.itemcolor.options.length=0;
	document.gatherer.itemcolor.options[0]=new Option("Oxford", "Oxford");
	document.gatherer.itemcolor.options[1]=new Option("Black", "Black");
	document.gatherer.itemcolor.options[2]=new Option("Birch", "Birch");
	document.gatherer.itemcolor.options[3]=new Option("Navy", "Navy");
	document.gatherer.itemcolor.options[6]=new Option("White", "White");
	document.gatherer.itemcolor.options[7]=new Option("Forest", "Forest");
	
}

if(type== "Baby Tee"){
	document.gatherer.colorpic.value="baby.jpg";
	document.gatherer.itemcolor.options.length=0;
	document.gatherer.itemcolor.options[0]=new Option("White", "White");
	document.gatherer.itemcolor.options[1]=new Option("Ash", "Ash");	
	document.gatherer.itemcolor.options[2]=new Option("Dark Heather", "Dark Heather");
	document.gatherer.itemcolor.options[3]=new Option("Pink", "Pink");
	document.gatherer.itemcolor.options[4]=new Option("Light Blue", "Light Blue");
	document.gatherer.itemcolor.options[5]=new Option("Navy", "Navy");
	document.gatherer.itemcolor.options[6]=new Option("Red", "Red");
	document.gatherer.itemcolor.options[7]=new Option("Royal", "Royal");
	document.gatherer.itemcolor.options[8]=new Option("Mint", "Mint");
	document.gatherer.itemcolor.options[9]=new Option("Banana", "Banana");
	document.gatherer.itemcolor.options[10]=new Option("Yellow", "Yellow");
	document.gatherer.itemcolor.options[11]=new Option("Key Lime", "Key Lime");

	

}

if(type== "Polo Tee"){
	document.gatherer.colorpic.value="polo.jpg";
	document.gatherer.itemcolor.options.length=0;
	document.gatherer.itemcolor.options[0]=new Option("Red", "Red");
	document.gatherer.itemcolor.options[1]=new Option("White", "White");	
	document.gatherer.itemcolor.options[2]=new Option("Ivy", "Ivy");
	document.gatherer.itemcolor.options[3]=new Option("Ash", "Ash");
	document.gatherer.itemcolor.options[4]=new Option("Royal", "Royal");
	document.gatherer.itemcolor.options[5]=new Option("Maroon", "Maroon");
	document.gatherer.itemcolor.options[6]=new Option("Navy", "Navy");
	document.gatherer.itemcolor.options[7]=new Option("Black", "Black");
	document.gatherer.itemcolor.options[8]=new Option("Heather Grey", "Heather Grey");
	document.gatherer.itemcolor.options[9]=new Option("Calif. Teal", "Calif. Teal");
	document.gatherer.itemcolor.options[10]=new Option("Kelly", "Kelly");
	document.gatherer.itemcolor.options[11]=new Option("Natural", "Natural");

}

if(type== "Longsleeve Tee"){
	document.gatherer.colorpic.value="longsleeve.jpg";
	document.gatherer.itemcolor.options.length=0;
	document.gatherer.itemcolor.options[0]=new Option("Ash", "Ash");
	document.gatherer.itemcolor.options[1]=new Option("Black", "Black");
	document.gatherer.itemcolor.options[2]=new Option("Navy", "Navy");
	document.gatherer.itemcolor.options[3]=new Option("Red", "Red");
	document.gatherer.itemcolor.options[4]=new Option("Athletic Heather", "Athletic Heather");
	document.gatherer.itemcolor.options[5]=new Option("Forest Green", "Forest Green");
	document.gatherer.itemcolor.options[6]=new Option("White", "White");
	document.gatherer.itemcolor.options[7]=new Option("Royal", "Royal");
	
}

if(type== "Regular Sweater"){
	document.gatherer.colorpic.value="sweater.jpg";
	document.gatherer.itemcolor.options.length=0;
	document.gatherer.itemcolor.options[0]=new Option("Navy", "Navy");
	document.gatherer.itemcolor.options[1]=new Option("Black", "Black");	
	document.gatherer.itemcolor.options[2]=new Option("Ash", "Ash");
	document.gatherer.itemcolor.options[3]=new Option("Athletic Heather", "Athletic Heather");
	document.gatherer.itemcolor.options[4]=new Option("White", "White");
	document.gatherer.itemcolor.options[5]=new Option("Red", "Red");
}

}


function populateFields(){

var type = document.gatherer.line1_type.value;

if(type== "Plain Tee 50/50"){
	var markedup="5.50";
	document.gatherer.colorpic.value="50.gif";	
}

if(type== "Plain Tee 100%"){
	var markedup="5.50";
	document.gatherer.colorpic.value="100.gif";
}

if(type== "Ladies Tank Top"){
	var markedup="5.50";
	document.gatherer.colorpic.value="Ladies.gif";
}

if(type== "Pullover Hoody"){
	var markedup="15.50";
	document.gatherer.colorpic.value="Pullover.gif";
}

if(type== "Zip Up Hoody"){
	var markedup="18.50";
	document.gatherer.colorpic.value="Zip.gif";
}

if(type== "Baby Tee"){
	var markedup="4.50";
	document.gatherer.colorpic.value="Baby.gif";

}

if(type== "Polo Tee"){
	var markedup="7.00";
	document.gatherer.colorpic.value="Polo.gif";

}

if(type== "Longsleeve Tee"){
	var markedup="6.50";
	document.gatherer.colorpic.value="Long.gif";
	
}

if(type== "Regular Sweater"){
	var markedup="8.50";
	document.gatherer.colorpic.value="Sweater.gif";
	
}

var small=document.gatherer.small.value;
var medium=document.gatherer.medium.value;
var large=document.gatherer.large.value;
var xlarge=document.gatherer.xlarge.value;
var xxlarge=document.gatherer.xxlarge.value;
var ymed=document.gatherer.ymed.value;
var ylarge=document.gatherer.ylarge.value;



var quantity = (small*1) + (medium*1) + (large*1) + (xlarge*1) + (xxlarge*1) + (ymed*1) + (ylarge*1); // add the line quantities together for a total number of imprinted pieces
document.gatherer.line1_quan.value=quantity;

var front = document.gatherer.front.value;
var back = document.gatherer.back.value;
var left_slv = document.gatherer.left_slv.value;
var right_slv = document.gatherer.right_slv.value;
var colors1 = (right_slv*1) + (left_slv*1) + (front*1) + (back*1);

//Out of Range Error

if (quantity*1 < 20) {
  alert("Minimum Order is 20 pieces per design. \n You've only entered "  + quantity + " pieces.")
  }
  
else if (front*1 > 4 || back*1 > 4 || left_slv*1 > 4 || right_slv*1 > 4){

  alert("There\'s a maximum of 4 colors per side.")
  }

else {

if((document.gatherer.line1_quan.value)>99){
	var discount1 = "1.00"
}
else if((document.gatherer.line1_quan.value)>39){
	var discount1 = "0.50"
}
else {
	var discount1 = "0.00"
}
document.gatherer.base1.value=markedup;
var line1each=(document.gatherer.base1.value*1) + (colors1) - (discount1);
document.gatherer.line1_each.value=dollarValue(line1each);
var line1total=(document.gatherer.line1_each.value) * (document.gatherer.line1_quan.value);
document.gatherer.line1_total.value=dollarValue(line1total);

var sizes=  small + " M:" + medium + " L:" + large + " XL:" + xlarge + " XXL:" + xxlarge + " YM:" + ymed + " YL:" + ylarge + " F:" +front + " B:" + back + " R:" + right_slv + " L:" + left_slv;
var itemcolor=document.gatherer.itemcolor.value;;
var itemnumber= Math.round(10000*Math.random());
document.gatherer.item_name.value=type;
document.gatherer.amount.value=dollarValue(line1each);
document.gatherer.quantity.value=quantity;
document.gatherer.item_number.value=itemnumber;
document.gatherer.os0.value=itemcolor;  
document.gatherer.os1.value=sizes;



	}
  }


