

/*  */


	function populateBilling()
		{
	
			var selectedPlan = 	document.frmOrderInfo.Plans.value;
		
				if(selectedPlan == "Prepaid ")
				{
					document.frmOrderInfo.TotalAmount.value = '$' + Math.round(5.00 * 12 * 100)/100;
					document.frmOrderInfo.TotalAmountINR.value = 'INR' + Math.round(249.9166 * 12 * 100)/100;
					document.frmOrderInfo.Plandetails.value = 'Windows Prepaid : 5 GB Disk Space, 30 POP3 Parallels  Plesk Panel' ;
					
				}
				
				else if(selectedPlan == "Platina")
				{
					document.frmOrderInfo.TotalAmount.value = '$' + Math.round(16.666 * 12 * 100)/100;
					document.frmOrderInfo.TotalAmountINR.value = 'INR' + Math.round(833.25 * 12 * 100)/100;
					document.frmOrderInfo.Plandetails.value = 'Windows Platina : 10 GB Disk Space, 50 POP3 Parallels  Plesk Panel' ;
				}
				else if(selectedPlan == "Ultima")
				{
					document.frmOrderInfo.TotalAmount.value = '$' + Math.round(20.8322 * 12 * 100)/100;
					document.frmOrderInfo.TotalAmountINR.value = 'INR' + Math.round(1250 * 12 * 100)/100;
					document.frmOrderInfo.Plandetails.value = 'Windows Ultima : Unlimited Disk Space, Unlimited POP3 Parallels  Plesk Panel' ;
				}
				else if(selectedPlan == "Starter")
				{
					document.frmOrderInfo.TotalAmount.value = '$' + Math.round(0.9158 * 12 * 100)/100;
					document.frmOrderInfo.TotalAmountINR.value = 'INR' + Math.round(45.8333 * 12 * 100)/100;
					document.frmOrderInfo.Plandetails.value = 'Windows Starter : 10 MB Disk Space, 1 POP3 Parallels  Plesk Panel' ;
				}				
				else
				{
					document.frmOrderInfo.TotalAmount.value = '$' + ' ';
					document.frmOrderInfo.TotalAmountINR.value = 'INR' + ' ';
				}
				
			
	}
