////////////////////////////////////////////////
// Functions for returning Pads prices        //
////////////////////////////////////////////////
// Author:         Erick Jensen               //
// Company:        LL Medico USA, Inc.        //
// Creation Date:  03-Mar-2000                //
// Last Revision:  15-Nov-2006                //
// Version:        1.0                        //
// File:           pads.js                    //
////////////////////////////////////////////////

// Pads Prices
var iPads25Price = 19.95;

// Gary Pull-on Flannel Diaper Prices 
var iGaryFlannelInsertPadsSmallPrice = 13.95;
var iGaryFlannelInsertPadsMediumSmallPrice = 14.95;
var iGaryFlannelInsertPadsLargePrice = 18.95;

// Pads Functions
function GetPadsPrice(psSize) {
   return iPads25Price;
}

function GetPadsCode(psSize) {
   return "DP25";
}

function GetGaryFlannelInsertPadsPrice(psSize) {
	
   if (psSize == "Small")
      return iGaryFlannelInsertPadsSmallPrice;
   else if (psSize == "Medium")
      return iGaryFlannelInsertPadsMediumSmallPrice;
   else if (psSize == "Large")
      return iGaryFlannelInsertPadsLargePrice;
      
}

function GetGaryFlannelInsertPadsCode(psSize) {
	
   // Local variables
   var lsSizeCode;

   if (psSize == "Small")
      lsSizeCode = "S";
   else if (psSize == "Medium")
      lsSizeCode = "M"
   else if (psSize == "Large")
      lsSizeCode = "L"
	
   return "GFIP" + lsSizeCode
   ;
}
