//mtLibAddEvent(function(){oBHF.homeBanner();}, "load");
/*
oBHF.homeBanner = function(){
	var oOriginalHTML = "";
	oOriginalHTML += "<img src=\"webimages/banner/couple.png\" width=\"660\" height=\"280\" alt=\"couple\" />\n";
	oOriginalHTML += "<div id=\"bannerText\">\n";
	oOriginalHTML += "	<p>Make Valentine's mean more...Give a Gift that saves lives</p>\n";
	oOriginalHTML += "</div>\n";

	var sDomain = "http://www.bhf.org.uk/Valentine2008";

	var xmlPath = escape(sDomain + "/_flash/homepage_banner/homepage_banner.xml");
	var oFlash = new JSFlashObject("_flash/homepage_banner/bhf_banner.swf?xmlpath=" + xmlPath, "homebanner", 660, 280, 8);
	oFlash.addNonFlashHTML(oOriginalHTML);
	document.getElementById("flashPlaceholder").innerHTML = oFlash.getXHTML();
};
*/
var donationAmount = {
	check24 : function(){
		if(!document.getElementById("cb24")){
			return
		};
		document.getElementById("cb24").onclick = function(){
			if(document.getElementById("cb24").checked){
				document.getElementById("txtDonationAmount").value = "24.00";
			}else{
				document.getElementById("txtDonationAmount").value = "";
			};
		};
	}
};
mtLibAddEvent(function(){donationAmount.check24();}, "load");
