 shq.HonorKilling={
  '1':{dollars:50.99,Hours:72},
  '2':{dollars:75.99,Hours:132},
  '3':{dollars:41.99,Hours:60},
  '4':{dollars:33.99,Hours:48},
  '5':{dollars:83.99,Hours:120},
  '6':{dollars:166.99,Hours:288},
  '7':{dollars:200.99,Hours:312},
  '8':{dollars:200.99,Hours:336}
  }
//shq.HonorKilling.ItemName='WOW Level up(Honner-Killing)';
shq.HonorKilling.ItemCount=1;
//shq.HonorKilling.Price=0;
//shq.HonorKilling.TotalPrice=0;
//shq.HonorKilling.requirements='';



shq.HonorKilling.post=function()
{  var j=0;
	for(var i=1;i<9;i++)
	{
	 if(shq.$("buy"+i).checked==true){
		shq.HonorKilling.ItemName=shq.$("buy"+i).nextSibling.innerHTML;
        shq.HonorKilling.Price=shq.HonorKilling[i].dollars;
		shq.HonorKilling.requirements=shq.$('requirements').value;
		j++;
	   }
	}
	if(j==0){alert('Please select one service.');return false}
	 

     shq.$('footfrm').innerHTML=shq.formHtml;
	  var newfrm=shq.$('footfrm').getElementsByTagName('form')[0]
	   newfrm.ItemName.value=shq.HonorKilling.ItemName
	  newfrm.ItemCount.value=shq.HonorKilling.ItemCount;
	  newfrm.Price.value=shq.HonorKilling.Price
	  newfrm.TotalPrice.value=shq.HonorKilling.Price
	  newfrm.requirements.value=shq.HonorKilling.requirements;
	  newfrm.action='order.asp';
	  newfrm.method='post';
	  newfrm.submit();
	  return false;
	  
}
