// This js developed by Darbie Marlin, 
// DMarlin at WebMaker-NW.com
// and Runway-WebMaker - web development services 509-328-8680 

// -- Order Form Calculation script --------------->

<!-- Hide from other browsers
// -- This function returns currency values with two decimal places--->
  function Prec2(value)
  {
    var result = Math.floor(value) + ".";
    var cents = 100*(value - Math.floor(value))+0.5;
    result += Math.floor(cents/10);
    result += Math.floor(cents%10);
    return result;
  }
  
  // -- This function returns time in minutes & seconds--->
  function PrecTime(value)
  {
    var result = Math.floor(value) + ":";
    var seconds = Math.floor(60*(value - Math.floor(value)));
	if (seconds < 10) {
				result += 0;
			 	 }
    result += seconds;
    return result;
  }
  // Stop hiding from other browsers -->
