function InitPaymentSection()
{
  document.getElementById('divonline').style.position = 'absolute';
  document.getElementById('divfax').style.position = 'absolute';
  document.getElementById('divmail').style.position = 'absolute';
  document.getElementById('rbonline').checked = true;
  EnablePaymentSection('online');
}
function EnablePaymentSection(value)
{
	document.getElementById('divonline').style.visibility = 'hidden';
	document.getElementById('divfax').style.visibility = 'hidden';
	document.getElementById('divmail').style.visibility = 'hidden';
	switch(value)
	{
		case "online": 
			document.getElementById('divonline').style.visibility = 'visible';
			break;
		case "fax": 
			document.getElementById('divfax').style.visibility = 'visible';
			break;
		case "mail": 
			document.getElementById('divmail').style.visibility = 'visible';
			break;
	}
}
function SubmitOnlinePayment()
{
	if (document.getElementById('amountsent').value > 0)
	  form1.submit();
	else
	  alert('Please enter the amount you are going to send');

}
function round (num) 
{
  num = Math.round(num * 100) / 100;
  num = (num + 0.001) + '';
  return num.substring(0, num.indexOf('.') + 3);
}