function showPrice()
{
	payment_cycle = get_payment_cycle_value() 
	addonStr = addonToStr() 
	serviceplan =  document.getElementById("serviceplan").value;
	domain =  document.getElementById("domain_name").value;
        extension =  document.getElementById("domain_ext").value;
	domain_year =  document.getElementById("domain_year").value;
	if (payment_cycle==-1)
	{ 
	document.getElementById("txtPrice").innerHTML=""
	return
	}
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null)
	{
	//alert ("Browser does not support HTTP Request")
	return
	}
	var url="../../order/include/price/dedicatedserver.php"
	url=url+"?serviceplan="+serviceplan
	url=url+"&payment_cycle="+payment_cycle
	url=url+"&addonStr="+addonStr
	url=url+"&domaintype="+get_domaintype_value()
	url=url+"&domain_name="+domain+"."+extension
	url=url+"&domain_year="+domain_year
	url=url+"&lang="+JS_LANG
	xmlHttp.onreadystatechange=stateChanged 
	xmlHttp.open("GET",url,true)
	xmlHttp.send(null)
}

function showHidePlans(payment_cycle) 
{
}

function showHidePaymentCycles()
{
	payment_cycle = get_payment_cycle_value()
        serviceplan =  document.getElementById("serviceplan").value;

	if (serviceplan.substr(0,7) == "dserver")

        {
                document.orderform['payment_cycle'][0].disabled = true;
                document.orderform['payment_cycle'][0].checked = false;
	}
	else 
	{
                document.orderform['payment_cycle'][0].disabled = false;
	}

}

function showHideAddons()
{
} 

