//alert('writing constants');
/******************************************************************************
Global multiplier
******************************************************************************/
var x = 1
/*
var transLandfillFactor = -0.0046363636364;
var transCombustionFactor = -0.0046363636364;
var transRecycleFactor = 0.1344545454545;
var transCompostFactor = -0.0046363636364;
*/
var cnstTransportationFactor = 0.000038; //default to MTCE
var energyUnits = false;
function setglobalmultiplier(xValue){
	if (xValue == "MTCO2E")	{
		x = 44/12;
		cnstTransportationFactor = 0.000038 * 44/12;
		energyUnits = false;
	}
	else if (xValue == "MTCE") {
		x = 1;
		cnstTransportationFactor = 0.000038
		energyUnits = false;
	}
	else {
		x = 0;
		cnstTransportationFactor = 0.001927463
		energyUnits = true;
	}
}
/******************************************************************************
getAluminumCanConstants()  
******************************************************************************/
function getAluminumCanConstants(){
	if (energyUnits) {
		cnstSrcReduction = -126.184146408;
		cnstRecycling  = -206.422219524;
		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion = 0.416045590;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -2.244823866*x;
		cnstRecycling = -3.700829943*x;
		cnstLandfillNatAve = 0.010364710*x;
		cnstLandfillNoRec = 0.010364710*x;
		cnstLandfillFlare = 0.010364710*x;
		cnstLandfillEnergyRec = 0.010364710*x;
		cnstCombustion = 0.016662493*x;
		cnstCompost = 0;
	}
	
	return true;
	
}// end getAluminumCanConstants()  
/******************************************************************************
getSteelCanConstants()  
******************************************************************************/
function getSteelCanConstants(){
	if (energyUnits) {
		cnstSrcReduction = -30.788375936;
		cnstRecycling  = -19.966201048;
		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion = -17.238712984;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -0.866351452*x;
		cnstRecycling = -0.489272763*x;
		cnstLandfillNatAve = 0.010364710*x;
		cnstLandfillNoRec = 0.010364710*x;
		cnstLandfillFlare = 0.010364710*x;
		cnstLandfillEnergyRec = 0.010364710*x;
		cnstCombustion = -0.418328460*x;
		cnstCompost = 0;
	}
	return true;
	
}// end getSteelCanConstants()  
/******************************************************************************
getCopperWireConstants()  
******************************************************************************/
function getCopperWireConstants(){
	if (energyUnits) {
	    cnstSrcReduction = -122.307686268;
		cnstRecycling  = -82.589644211;
		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion = 0.393760965;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -2.001288849*x;
		cnstRecycling = -1.342457359*x;
		cnstLandfillNatAve = 0.010364710*x;
		cnstLandfillNoRec = 0.010364710*x;
		cnstLandfillFlare = 0.010364710*x;
		cnstLandfillEnergyRec = 0.010364710*x;
		cnstCombustion = 0.014936305*x;
		cnstCompost = 0;
	}
	return true;
	
}// end getCopperWireConstants()
/******************************************************************************
getGlassConstants()  
******************************************************************************/
function getGlassConstants(){
	if (energyUnits) {
		cnstSrcReduction = -7.534443873;
		cnstRecycling  = -2.125409820;
		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion = 0.380390190;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -0.156222036*x;
		cnstRecycling = -0.075780209*x;
		cnstLandfillNatAve = 0.010364710*x;
		cnstLandfillNoRec = 0.010364710*x;
		cnstLandfillFlare = 0.010364710*x;
		cnstLandfillEnergyRec = 0.010364710*x;
		cnstCombustion = 0.013900592*x;
		cnstCompost = 0;
	}
	return true;
	
}// end getGlassConstants()
/******************************************************************************
getHDPEConstants()  
******************************************************************************/
function getHDPEConstants(){
	if (energyUnits) {
		cnstSrcReduction = -63.682602154;
		cnstRecycling  = -50.904027964;
		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion = -6.366324598;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -0.487169072*x;
		cnstRecycling = -0.379652612*x;
		cnstLandfillNatAve = 0.010364710*x;
		cnstLandfillNoRec = 0.010364710*x;
		cnstLandfillFlare = 0.010364710*x;
		cnstLandfillEnergyRec = 0.010364710*x;
		cnstCombustion = 0.253298668*x;
		cnstCompost = 0;
	}
	return true;
	
}// end getHDPEConstants()  
/******************************************************************************
getLDPEConstants()  
******************************************************************************/
function getLDPEConstants(){
	if (energyUnits) {
		cnstSrcReduction = -73.919703349;
		cnstRecycling  = -56.010334826;
		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion = -6.366324598;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -0.618309320*x;
		cnstRecycling = -0.462093566*x;
		cnstLandfillNatAve = 0.010364710*x;
		cnstLandfillNoRec = 0.010364710*x;
		cnstLandfillFlare = 0.010364710*x;
		cnstLandfillEnergyRec = 0.010364710*x;
		cnstCombustion = 0.253298668*x;
		cnstCompost = 0;
	}
	return true;
	
}// end getLDPEConstants()  
/******************************************************************************
getPETConstants()  
******************************************************************************/
function getPETConstants(){
	if (energyUnits) {
		cnstSrcReduction = -70.673529026;
		cnstRecycling  = -52.831946414;
		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion = -3.162686908;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -0.571016585*x;
		cnstRecycling = -0.419436920*x;
		cnstLandfillNatAve = 0.010364710*x;
		cnstLandfillNoRec = 0.010364710*x;
		cnstLandfillFlare = 0.010364710*x;
		cnstLandfillEnergyRec = 0.010364710*x;
		cnstCombustion = 0.295106889*x;
		cnstCompost = 0;
	}
	
	return true;
	
}// end getPETConstants() 
/******************************************************************************
getCorrugatedBoxConstants()
******************************************************************************/
function getCorrugatedBoxConstants(){
	if (energyUnits) {
		cnstSrcReduction = -21.905319358;
		cnstRecycling  = -15.418162655;
		cnstLandfillNatAve = 0.228800544;
//		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = -0.520127080;
//		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion = -2.214609822;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -1.524528965*x;
		cnstRecycling = -0.848527804*x;
		cnstLandfillNatAve = 0.109175797*x;
		cnstLandfillNoRec = 0.404676398*x;
		cnstLandfillFlare = -0.059466459*x;
		cnstLandfillEnergyRec = -0.133306066*x;
		cnstCombustion = -0.177110530*x;
		cnstCompost = 0;
	}
	return true;
}
/******************************************************************************
getMagazinesConstants()
******************************************************************************/
function getMagazinesConstants(){
	if (energyUnits) {
		cnstSrcReduction = -33.209053903;
		cnstRecycling  = -0.685651516;
		cnstLandfillNatAve = 0.406832929;
//		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.104434488;
//		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion = -1.578160932;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -2.359523906*x;
		cnstRecycling = -0.837392916*x;
		cnstLandfillNatAve = -0.082112596*x;
		cnstLandfillNoRec = 0.038062091*x;
		cnstLandfillFlare = -0.149347308*x;
		cnstLandfillEnergyRec = -0.179161914*x;
		cnstCombustion = -0.127810605*x;
		cnstCompost = 0;
	}
	
	return true;
}
/******************************************************************************
getNewspaperConstants()
******************************************************************************/
function getNewspaperConstants(){
	if (energyUnits) {
		cnstSrcReduction = -36.447849603;
		cnstRecycling  = -16.485950938;
		cnstLandfillNatAve = 0.421260979;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.155050029;
		cnstCombustion = -2.538004300;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -1.329396733*x;
		cnstRecycling = -0.761328885*x;
		cnstLandfillNatAve = -0.236772787*x;
		cnstLandfillNoRec = -0.128567787*x;
		cnstLandfillFlare = -0.293550233*x;
		cnstLandfillEnergyRec = -0.319796977*x;
		cnstCombustion = -0.202160968*x;
		cnstCompost = 0;
	}
	return true;
	
}
/******************************************************************************
getOfficePaperConstants()
******************************************************************************/
function getOfficePaperConstants(){
	if (energyUnits) {
		cnstSrcReduction = -36.581515935;
		cnstRecycling  = -10.081037232;
		cnstLandfillNatAve = 0.007140640;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = -1.297739854;
		cnstCombustion = -2.127967200;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -2.181607993*x;
		cnstRecycling = -0.777920251*x;
		cnstLandfillNatAve = 0.529776795*x;
		cnstLandfillNoRec = 1.045891983*x;
		cnstLandfillFlare = 0.237201074*x;
		cnstLandfillEnergyRec = 0.108547971*x;
		cnstCombustion = -0.170399112*x;
		cnstCompost = 0;
	}
		
	return true;
}
/******************************************************************************
getPhonebookConstants()
******************************************************************************/
function getPhonebookConstants(){
	if (energyUnits) {
		cnstSrcReduction = -39.868569514;
		cnstRecycling  = -11.419354649;
		cnstLandfillNatAve = 0.421260979;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.155050029;
		cnstCombustion = -2.538004300;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -1.724173294*x;
		cnstRecycling = -0.724187689*x;
		cnstLandfillNatAve = -0.236772787*x;
		cnstLandfillNoRec = -0.128567787*x;
		cnstLandfillFlare = -0.293550233*x;
		cnstLandfillEnergyRec = -0.319796977*x;
		cnstCombustion = -0.202160968*x;
		cnstCompost = 0;
	}
	return true;
}
/******************************************************************************
getTextbookConstants()
******************************************************************************/
function getTextbookConstants(){
	if (energyUnits) {
		cnstSrcReduction = -35.300297294;
		cnstRecycling  = -0.529755651;
		cnstLandfillNatAve = 0.007140640;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = -1.297739854;
		cnstCombustion = -2.127967200;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -2.499754310*x;
		cnstRecycling = -0.847663867*x;
		cnstLandfillNatAve = 0.529776795*x;
		cnstLandfillNoRec = 1.045891983*x;
		cnstLandfillFlare = 0.237201074*x;
		cnstLandfillEnergyRec = 0.108547971*x;
		cnstCombustion = -0.170399112*x;
		cnstCompost = 0;
	}
	return true;
}
/******************************************************************************
getDimLumberConstants()  
******************************************************************************/
function getDimLumberConstants(){
	if (energyUnits) {
		cnstSrcReduction = -3.529542520;
		cnstRecycling  = 0.587941200;
		cnstLandfillNatAve = 0.373099803;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = -0.013905859;
		cnstCombustion = -2.662798200;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -0.550767668*x;
		cnstRecycling = -0.669797932*x;
		cnstLandfillNatAve = -0.133002833*x;
		cnstLandfillNoRec = 0.019247827*x;
		cnstLandfillFlare = -0.220596329*x;
		cnstLandfillEnergyRec = -0.258752681*x;
		cnstCombustion = -0.211827620*x;
		cnstCompost = 0;
	}
	return true;
	
}// end getDimLumberConstants()  
/******************************************************************************
getFiberboardConstants()  
******************************************************************************/
function getFiberboardConstants(){
	if (energyUnits) {
		cnstSrcReduction = -11.505361024;
		cnstRecycling  = 0.858314160;
		cnstLandfillNatAve = 0.373099803;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = -0.013905859;
		cnstCombustion = -2.662798200;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -0.604483794*x;
		cnstRecycling = -0.674168369*x;
		cnstLandfillNatAve = -0.133002833*x;
		cnstLandfillNoRec = 0.019247827*x;
		cnstLandfillFlare = -0.220596329*x;
		cnstLandfillEnergyRec = -0.258752681*x;
		cnstCombustion = -0.211827620*x;
		cnstCompost = 0;
	}
	return true;
	
}// end getFiberboardConstants()
/******************************************************************************
getFoodWasteConstants()  
******************************************************************************/
function getFoodWasteConstants(){
	if (energyUnits) {
		cnstSrcReduction = 0;
		cnstRecycling  = 0;
		cnstLandfillNatAve = 0.334299168;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = -0.150023707;
		cnstCombustion = -0.548432980;
		cnstCompost = 0.584;
	}
	else {
		cnstSrcReduction = 0;
		cnstRecycling = 0;
		cnstLandfillNatAve = 0.197373679*x;
		cnstLandfillNoRec = 0.388754320*x;
		cnstLandfillFlare = 0.088598476*x;
		cnstLandfillEnergyRec = 0.040847252*x;
		cnstCombustion = -0.048046917*x;
		cnstCompost = -0.054153676*x;
	}
	return true;
	
}// end getFoodWasteConstants()
/******************************************************************************
getYardWasteConstants()  
******************************************************************************/
function getYardWasteConstants(){
	if (energyUnits) {
		cnstSrcReduction = 0;
		cnstRecycling  = 0;
		cnstLandfillNatAve = 0.412721100;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.125090983;
		cnstCombustion = -0.701751200;
		cnstCompost = 0.584;
	}
	else {
		cnstSrcReduction = 0;
		cnstRecycling = 0;
		cnstLandfillNatAve = -0.059734372*x;
		cnstLandfillNoRec = -0.008050426*x;
		cnstLandfillFlare = -0.186307256*x;
		cnstLandfillEnergyRec = -0.214665797*x;
		cnstCombustion = -0.059923090*x;
		cnstCompost = -0.054153676*x;
	}
	return true;
	
}// end getYardWasteConstants()
/******************************************************************************
getGrassConstants()  
******************************************************************************/
function getGrassConstants(){
	if (energyUnits) {
		cnstSrcReduction = 0;
		cnstRecycling  = 0;
		cnstLandfillNatAve = 0.462259497;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.298878349;
		cnstCombustion = -0.701751200;
		cnstCompost = 0.584;
	}
	else {
		cnstSrcReduction = 0;
		cnstRecycling = 0;
		cnstLandfillNatAve = -0.002011748*x;
		cnstLandfillNoRec = 0.060825079*x;
		cnstLandfillFlare = -0.040429289*x;
		cnstLandfillEnergyRec = -0.056537654*x;
		cnstCombustion = -0.059923090*x;
		cnstCompost = -0.054153676*x;
	}
	return true;
	
}
/******************************************************************************
getLeavesConstants()  
******************************************************************************/
function getLeavesConstants(){
	if (energyUnits) {
		cnstSrcReduction = 0;
		cnstRecycling  = 0;
		cnstLandfillNatAve = 0.405283275;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.098998092;
		cnstCombustion = -0.701751200;
		cnstCompost = 0.584;
	}
	else {
		cnstSrcReduction = 0;
		cnstRecycling = 0;
		cnstLandfillNatAve = -0.048074995*x;
		cnstLandfillNoRec = -0.080180745*x;
		cnstLandfillFlare = -0.269998926*x;
		cnstLandfillEnergyRec = -0.300196741*x;
		cnstCombustion = -0.059923090*x;
		cnstCompost = -0.054153676*x;
	}
	
	return true;
	
}
/******************************************************************************
getBranchesConstants()  
******************************************************************************/
function getBranchesConstants(){
	if (energyUnits) {
		cnstSrcReduction = 0;
		cnstRecycling  = 0;
		cnstLandfillNatAve = 0.373099803;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = -0.013905859;
		cnstCombustion = -0.701751200;
		cnstCompost = 0.584;
	}
	else {
		cnstSrcReduction = 0;
		cnstRecycling = 0;
		cnstLandfillNatAve = -0.133002833*x;
		cnstLandfillNoRec = 0.019247827*x;
		cnstLandfillFlare = -0.220596329*x;
		cnstLandfillEnergyRec = -0.258752681*x;
		cnstCombustion = -0.059923090*x;
		cnstCompost = -0.054153676*x;
	}
	return true;
	
}
/******************************************************************************
getMixedPaperBroadConstants()
******************************************************************************/
function getMixedPaperBroadConstants(){
	if (energyUnits) {
		cnstSrcReduction = 0;
		cnstRecycling  = -22.9418;
		cnstLandfillNatAve = 0.244901658;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = -0.463642203;
		cnstCombustion = -2.223980061;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = 0;
		cnstRecycling = -0.964620533*x;
		cnstLandfillNatAve = 0.094965265*x;
		cnstLandfillNoRec = 0.375611766*x;
		cnstLandfillFlare = -0.063503526*x;
		cnstLandfillEnergyRec = -0.133361545*x;
		cnstCombustion = -0.177836358*x;
		cnstCompost = 0;
	}
	return true;
	
}// end getMixedPaperBroadConstants()  
/******************************************************************************
getMixedPaperResidConstants()  
******************************************************************************/
function getMixedPaperResidConstants(){
	if (energyUnits) {
		cnstSrcReduction = 0;
		cnstRecycling  = -22.9418;
		cnstLandfillNatAve = 0.259837296;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = -0.411245977;
		cnstCombustion = -2.213215696;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = 0;
		cnstRecycling = -0.964620533*x;
		cnstLandfillNatAve = 0.069362923*x;
		cnstLandfillNoRec = 0.335138987*x;
		cnstLandfillFlare = -0.080760357*x;
		cnstLandfillEnergyRec = -0.146924995*x;
		cnstCombustion = -0.177002540*x;
		cnstCompost = 0;
	}
	return true;
	
}// end getMixedPaperResidConstants()  
/******************************************************************************
getMixedPaperOfficeConstants()  
******************************************************************************/
function getMixedPaperOfficeConstants(){
	if (energyUnits) {
		cnstSrcReduction = 0;
		cnstRecycling  = -13.951344262;
		cnstLandfillNatAve = 0.249078130;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = -0.448990577;
		cnstCombustion = -2.020476866;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = 0;
		cnstRecycling = -0.931832285*x;
		cnstLandfillNatAve = 0.127491152*x;
		cnstLandfillNoRec = 0.404375891*x;
		cnstLandfillFlare = -0.028247495*x;
		cnstLandfillEnergyRec = -0.097072729*x;
		cnstCombustion = -0.162072810*x;
		cnstCompost = 0;
	}
	
	return true;
	
}// end getMixedPaperOfficeConstants()  
/******************************************************************************
getMixedMetalsConstants()  
******************************************************************************/
function getMixedMetalsConstants(){
	if (energyUnits) {
		cnstSrcReduction = 0;
		cnstRecycling  = -74.806206482;
		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion = 0.384584943;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = 0;
		cnstRecycling = -1.433848404*x;
		cnstLandfillNatAve = 0.010364710*x;
		cnstLandfillNoRec = 0.010364710*x;
		cnstLandfillFlare = 0.010364710*x;
		cnstLandfillEnergyRec = 0.010364710*x;
		cnstCombustion = -0.290389944*x;
		cnstCompost = 0;
	}
	return true;
	
}// end getMixedMetalsConstants()  
/******************************************************************************
getMixedPlasticsConstants()  
******************************************************************************/
function getMixedPlasticsConstants(){
	if (energyUnits) {
		cnstSrcReduction  = 0;
		cnstRecycling  = -52.415088735;
		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion = -5.091090178;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = 0;
		cnstRecycling = -0.407495048*x;
		cnstLandfillNatAve = 0.010364710*x;
		cnstLandfillNoRec = 0.010364710*x;
		cnstLandfillFlare = 0.010364710*x;
		cnstLandfillEnergyRec = 0.010364710*x;
		cnstCombustion = 0.269940776*x;
		cnstCompost = 0;
	}
	return true;
	
}
/******************************************************************************
getMixedRecyclableConstants()  
******************************************************************************/
function getMixedRecyclableConstants(){
	if (energyUnits) {
		cnstSrcReduction  = 0;
		cnstRecycling  = -16.907756338;
		cnstLandfillNatAve = 0.303848637;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = -0.241532806;
		cnstCombustion = -2.670212571;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = 0;
		cnstRecycling = -0.794696315*x;
		cnstLandfillNatAve = 0.038035854*x;
		cnstLandfillNoRec = 0.259902474*x;
		cnstLandfillFlare = -0.080799619*x;
		cnstLandfillEnergyRec = -0.135001269*x;
		cnstCombustion = -0.166001400*x;
		cnstCompost = 0;
	}
	return true;
	
}
/******************************************************************************
getMixedOrganicsConstants()  
******************************************************************************/
function getMixedOrganicsConstants(){
	if (energyUnits) {
		cnstSrcReduction  = 0;
		cnstRecycling   = 0;
		cnstLandfillNatAve = 0.374848118;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = -0.007772535;
		cnstCombustion = -0.582374151;
		cnstCompost = 0.584;
	}
	else {
		cnstSrcReduction = 0;
		cnstRecycling = 0;
		cnstLandfillNatAve = 0.064433044*x;
		cnstLandfillNoRec = 0.173484116*x;
		cnstLandfillFlare = -0.063642460*x;
		cnstLandfillEnergyRec = -0.101366477*x;
		cnstCombustion = -0.054187627*x;
		cnstCompost = -0.054153676*x;
	}
	
	return true;
	
}
/******************************************************************************
getMixedMSWConstants()  
******************************************************************************/
function getMixedMSWConstants(){
	if (energyUnits) {
		cnstSrcReduction  = 0;
		cnstRecycling   = 0;
		cnstLandfillNatAve = 0.275448531;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = -0.356479661;
		cnstCombustion = -1.48617;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = 0;
		cnstRecycling = 0;
		cnstLandfillNatAve = 0.115623199*x;
		cnstLandfillNoRec = 0.432951099*x;
		cnstLandfillFlare = 0.041317853*x;
		cnstLandfillEnergyRec = -0.020986338*x;
		cnstCombustion = -0.033050547*x;
		cnstCompost = 0;
	}
	return true;
}
/******************************************************************************
getCarpetsConstants()  
******************************************************************************/
function getCarpetsConstants(){
	if (energyUnits) {
		cnstSrcReduction = -91.064720000;
		cnstRecycling  = -105.582527003;
		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion = -4.777823600;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -1.089500822*x;
		cnstRecycling = -1.958840005*x;
		cnstLandfillNatAve = 0.010364710*x;
		cnstLandfillNoRec = 0.010364710*x;
		cnstLandfillFlare = 0.010364710*x;
		cnstLandfillEnergyRec = 0.010364710*x;
		cnstCombustion = 0.105890573*x;
		cnstCompost = 0;
	}
	return true;
}
/******************************************************************************
getPCsConstants()  
******************************************************************************/
function getPCsConstants(){
	if (energyUnits) {
		cnstSrcReduction = -956.742082054;
		cnstRecycling  = -43.436839913;
		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion = -4.692321611;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -15.129021482*x;
		cnstRecycling = -0.615984854*x;
		cnstLandfillNatAve = 0.010364710*x;
		cnstLandfillNoRec = 0.010364710*x;
		cnstLandfillFlare = 0.010364710*x;
		cnstLandfillEnergyRec = 0.010364710*x;
		cnstCombustion = -0.054394271*x;
		cnstCompost = 0;
	}
	return true;
}
/******************************************************************************
getClayBricksConstants()  
******************************************************************************/
function getClayBricksConstants(){
	if (energyUnits) {
		cnstSrcReduction = -5.131478960;
		cnstRecycling   = 0;
		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion  = 0;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -0.077224349*x;
		cnstRecycling = 0;
		cnstLandfillNatAve = 0.010364710*x;
		cnstLandfillNoRec = 0.010364710*x;
		cnstLandfillFlare = 0.010364710*x;
		cnstLandfillEnergyRec = 0.010364710*x;
		cnstCombustion = 0;
		cnstCompost = 0;
	}
	return true;
}
/******************************************************************************
getAggregateConstants()  
******************************************************************************/
function getAggregateConstants(){
	if (energyUnits) {
		cnstSrcReduction  = 0;
		cnstRecycling  = -0.106822116;
		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion  = 0;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = 0;
		cnstRecycling = -0.002119688*x;
		cnstLandfillNatAve = 0.010364710*x;
		cnstLandfillNoRec = 0.010364710*x;
		cnstLandfillFlare = 0.010364710*x;
		cnstLandfillEnergyRec = 0.010364710*x;
		cnstCombustion = 0;
		cnstCompost = 0;
	}
	return true;
}
/******************************************************************************
getFlyAshConstants()  
******************************************************************************/
function getFlyAshConstants(){
	if (energyUnits) {
		cnstSrcReduction  = 0;
		cnstRecycling  = -4.766676313;
		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion  = 0;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = 0;
		cnstRecycling = -0.236999787*x;
		cnstLandfillNatAve = 0.010364710*x;
		cnstLandfillNoRec = 0.010364710*x;
		cnstLandfillFlare = 0.010364710*x;
		cnstLandfillEnergyRec = 0.010364710*x;
		cnstCombustion = 0;
		cnstCompost = 0;
	}
	return true;
}
/******************************************************************************
getTiresConstants()  
******************************************************************************/
function getTiresConstants(){
	if (energyUnits) {
		cnstSrcReduction  = -88.174677827;
		cnstRecycling  = -51.963311163;
		cnstLandfillNatAve = 0.5274;
		cnstLandfillNoRec = 0.5274;
		cnstLandfillFlare = 0.5274;
		cnstLandfillEnergyRec = 0.5274;
		cnstCombustion  = -26.705274517;
		cnstCompost = 0;
	}
	else {
		cnstSrcReduction = -1.086366326;
		cnstRecycling = -0.497580304*x;
		cnstLandfillNatAve = 0.010364710*x;
		cnstLandfillNoRec = 0.010364710*x;
		cnstLandfillFlare = 0.010364710*x;
		cnstLandfillEnergyRec = 0.010364710*x;
		cnstCombustion = 0.049324839;
		cnstCompost = 0;
	}
	return true;
}

