function paypalSend(itemName,amount,shipping,account)
{

	document.getElementById('paypalItemName').value = itemName;
	document.getElementById('paypalAmount').value = amount;
	document.getElementById('paypalShipping').value = shipping;
	document.getElementById('paypalAccount').value = account + "@misfile.com";
	
	document.getElementById('paypalForm').submit();	
	resetPaypal();
}

function resetPaypal()
{
	document.getElementById('paypalItemName').value = "Building 12/Misfile Comic Donation";
	document.getElementById('paypalAmount').value = "";
	document.getElementById('paypalShipping').value = "";
	document.getElementById('paypalAccount').value = "peacecraft@misfile.com";

}

