// Giving Page javaScript

function show_inHonor()
{
	document.getElementById("inHonor").style.display="block";
}

function clearOther()
{
	document.getElementById('amt_other').value = "";
	document.getElementById('AngelOther').style.display="none";
}

function selectOther()
{
	var otherAmt=document.form1.amt_other.value.replace(/,/g,'');
	
	if (otherAmt != '') 
		{
			document.getElementById('other').checked=true;
		}
			
	if (otherAmt >= 1500) 
		{
			document.getElementById('AngelOther').style.display="block";
		}
		
	else
		{
			document.getElementById('AngelOther').style.display="none";
		}
}

// Send To Friend Form



function clearText(thefield)
{
if (thefield.defaultValue==thefield.value)
	{
		thefield.value = "";
		thefield.style.color = "#000";
	}
}

function returnText(thefield)
{
if (thefield.value=="")
	{
		thefield.value = thefield.defaultValue;
		thefield.style.color = "#999";
	}
}
