﻿// JScript 文件
var AccountCount = 1;

function ChangeAccount(count){

      var s =  document.getElementById("selAccountCount"+count);
       if( s.value == 1){
         AccountCount = 1;
         document.getElementById("lblprice"+count+"1").style.display='';
         document.getElementById("lblprice"+count+"2").style.display='none';
     }else{
         AccountCount = 2;
         document.getElementById("lblprice"+count+"1").style.display='none';
         document.getElementById("lblprice"+count+"2").style.display='';
     }
}

function BuyOther(count,op){
  
   window.location.href="T8_OrderInfo.aspx?index="+count+"&seri=OTHER&op="+op;
}

function BuyPVE(count){
    window.location.href="T8_OrderInfo.aspx?index="+count+"&seri=PVE";
}

function BuyPVP(count){
      var c = document.getElementById("selAccountCount"+count).value ;
      window.location.href="T8_OrderInfo.aspx?index="+count+"&count="+c+"&seri=PVP";
}