var co;
var fld;
var cn;
var giftTimer = null;
function loadHeightXMLDoc(ratio,len) {
   var height = Math.round(parseInt(len.options[len.selectedIndex].text) * ratio);
   fld = document.getElementById('height');
   fld.innerHTML = height;
   var co = fld.style.color;
   fld.style.color = '#ff0000';
   cn = 3;
   CountDown3();
} 
function loadLengthXMLDoc(ratio,height) {
   var len = Math.round(parseInt(height.options[height.selectedIndex].text) / ratio);
   fld = document.getElementById('length');
   fld.innerHTML = len;
   co = fld.style.color;
   fld.style.color = '#ff0000';
   cn = 3;
   CountDown3();
}
function CountDown3() {
var giftTimer = null;
cn--;
if (cn > 0)
	giftTimer = window.setTimeout("CountDown3()",1000);
else
  fld.style.color = color;
}
