//
// Tuff Enuff script to get chaps sizes.
// All rights reserved, copyright 2002-2006 Tuff Enuff.
// 2006-04-02 - bk - update
// 2002-11-16 - bk - New page
//
var // Global values
   TEinit = false;
   
// common js code for network
//Clear inherited frames  
if (parent != self) {
                top.location=self.document.location;
}

function TEchaps() {
  var val = "Waist: " + document.chaps.waist.value
                             + ", Inseam: " + document.chaps.inseam.value
							 + ", Thigh: " + document.chaps.thigh.value
							 + " (in inches)";
  //window.alert(val +  " in TEchaps "); 
 document.chaps.os1.value  = val;
}

function TEscabbards() {
  document.dlxRifleScope.os0.value = "Length: " + document.dlxRifleScope.drslength.value
							 + ", Width: " + document.dlxRifleScope.drswidth.value
							 + " (in inches)";
  document.dlxRifle.os0.value = "Length: " + document.dlxRifle.drlength.value
							 + ", Width: " + document.dlxRifle.drwidth.value
							 + " (in inches)";
  document.RifleScope.os0.value = "Length: " + document.RifleScope.rslength.value
							 + ", Width: " + document.RifleScope.rswidth.value
							 + " (in inches)";
  document.Rifle.os0.value = "Length: " + document.Rifle.rlength.value
							 + ", Width: " + document.Rifle.rwidth.value
							 + " (in inches)";
}


