<!--
function sumorder()
{
      // Host_Plans
      var selectedItem1 = order.hosting_plan.selectedIndex
      var Itemval1 = order.hosting_plan.options[selectedItem1].value
      var ph = 0
	  var hostdis = 0
      switch(Itemval1)
      {
      case 'plan1' : ph = 15000 ; hostdis = hostdis - 0; break;
      case 'plan2' : ph = 21000 ; hostdis = hostdis - 0 ;break;
      case 'plan3' : ph = 30000 ; hostdis = hostdis - 0 ;break;
      case 'plan4' : ph = 47000 ; hostdis = hostdis - 0 ; break;
      case 'plan5' : ph = 70000 ; hostdis = hostdis - 0 ; break;
      case 'plan6' : ph = 100000 ; hostdis = hostdis - 0 ; break;
      case 'plan7' : ph = 130000 ; hostdis = hostdis - 0 ; break;
      case 'plan8' : ph = 170000 ; hostdis = hostdis - 0 ; break;
      case 'reseller1' : ph = 12000 ; hostdis = hostdis - 0; break;
      case 'reseller2' : ph = 20000 ; hostdis = hostdis - 0 ;break;
      case 'reseller3' : ph = 27000 ; hostdis = hostdis - 0 ;break;
      case 'reseller4' : ph = 35000 ; hostdis = hostdis - 0 ; break;
      case 'reseller5' : ph = 42000 ; hostdis = hostdis - 0 ; break;
      case 'reseller10' : ph = 55000 ; hostdis = hostdis - 0 ; break;
      case 'plan2win' : ph = 19000 ; hostdis = hostdis - 0 ;break;
      case 'plan3win' : ph = 29000 ; hostdis = hostdis - 0 ;break;
      case 'plan4win' : ph = 50000 ; hostdis = hostdis - 3000 ; break;
      case 'plan5win' : ph = 100000 ; hostdis = hostdis - 8000 ; break;
      case 'plan6win' : ph = 200000 ; hostdis = hostdis - 20000 ; break;
      }


      // Domain_Plans
    var selectedItem = order.domain_registration.selectedIndex
    var Itemval = order.domain_registration.options[selectedItem].value
    var domainyear = order.domain_years.options[order.domain_years.selectedIndex].value
    var pd = 0
	var pds = 0;
	var domaindis = 0
		
	if (domainyear >0 )
		switch(Itemval)
		{
		case 'com-net-org' : pd =10000 ;break;
		case 'biz-info-us-name' : pd = 12000 ;break;
		case 'eu' : pd = 12000 ;break;
		case 'cc' : pd = 22000 ;break;
		case 'tv' : pd = 32000 ;break;
		case 'in' : pd = 15000 ;break;
		case 'ir' : pd = 9000 ;break;
		case 'ws' : pd = 9000 ;break;
		case 'mobi' : pd = 14000;break;
		case 'freeinfo' : pd = 9000; domaindis = domaindis - 9000 ;if (ph < 20000 )  { domaindis = -6000 };if (ph == 0 )  { domaindis = 0 }; break;
		case 's-org-info' : pd = 3000;break;
		}
	pd = pd * domainyear

	if (pds >0) { document.getElementById('domy').disabled = true}	else {document.getElementById('domy').disabled = false}
	if ((Itemval == 'ir') && (domainyear > 1)){ pd=25000 }

	order.hosting_cost.value = ph
	order.domain_cost.value = pd
	order.discount.value = hostdis + domaindis
	total = ph + pd + hostdis + domaindis;
	order.total_cost.value = total
	eg = total / 880
	fee = (eg / 100)
	if ((eg != 0) && (eg < 20)) {fee = 0.47}
	if (eg > 100 ) { fee = 1}
	eg += fee
//	order.egold.value = Math.round(eg*100)/100 + " $"
	return true
}

function Disab() { 
frm=document.forms['order'] 
if(frm.TOS.checked) 
{frm.Submit.disabled=false} 
else {frm.Submit.disabled=true} 
} 
//-->