



function haindhid()
					{
						var hind=document.getElementById("hind");
						var memoinfo=document.getElementById("memoinfo");
						
						hind.style.display="none";
						memoinfo.style.display="none";
						
					}

function addaccount(eurprice,time,honor,location)
{

    var discount=FeiYang.SaleWeb.WOW.WorldOfWarcraft_ArenaPVP_Level. WoW_Arena_PvP_Gears.getdis().value;
   	var TxtcalcPrice=document.getElementById("TxtcalcPrice");
	var TxtDiscountPrice=document.getElementById("TxtDiscountPrice");
	var TxtDays=document.getElementById("TxtDays");
	var hind=document.getElementById("hind");
	var sale=document.getElementById("sale");
	
	if(TxtcalcPrice.value=="" && TxtDiscountPrice.value=="" && TxtDays.value=="")
	{
	TxtcalcPrice.value=parseFloat(eurprice).toFixed(2);
	TxtDiscountPrice.value=(parseFloat(eurprice)*parseFloat(discount)).toFixed(2);
	TxtDays.value=time;
	hind.value=honor;
	sale.value=((1-parseFloat(discount))*100).toFixed(2);
	}
	else
	{	
	TxtcalcPrice.value=(parseFloat(TxtcalcPrice.value)+eurprice).toFixed(2);
	TxtDays.value=parseFloat(TxtDays.value)+time;
	hind.value=(parseInt(hind.value)+honor).toFixed(2);
	
	if (location=="EUR")
	{
	
		if(parseInt(hind.value)>75000)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*0.97*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)>50000 && parseInt(hind.value)<75000)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*0.98*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)>25000 && parseInt(hind.value)<50000)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*0.99*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)<25000 && parseInt(hind.value)>0)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)==0)
		{
		TxtDiscountPrice.value=0;
		}
		
		
	}
	if (location=="USD")
	{
		if(parseInt(hind.value)>75000)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*0.97*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)>50000 && parseInt(hind.value)<75000)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*0.98*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)>25000 && parseInt(hind.value)<50000)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*0.99*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)<25000 && parseInt(hind.value)>0)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)==0)
		{
		TxtDiscountPrice.value=0;
		}
	
	}
	/*sale.innerHTML=((1-parseFloat(TxtDiscountPrice.value)/parseFloat(TxtcalcPrice.value))*100).toFixed(2);*/
	if(TxtDiscountPrice.value==0)
	{
	sale.value=0;
	}
	else
	{
	sale.value=((1-parseFloat(TxtDiscountPrice.value)/parseFloat(TxtcalcPrice.value))*100).toFixed(2);
	}
	}
}


function subaccount(eurprice,time,honor,location)
{



   var discount=FeiYang.SaleWeb.WOW.WorldOfWarcraft_ArenaPVP_Level. WoW_Arena_PvP_Gears.getdis().value;
	var TxtcalcPrice=document.getElementById("TxtcalcPrice");
	var TxtDiscountPrice=document.getElementById("TxtDiscountPrice");
	var TxtDays=document.getElementById("TxtDays");
	var hind=document.getElementById("hind");
	var sale=document.getElementById("sale");
	if(TxtcalcPrice.value=="" && TxtDiscountPrice.value=="" && TxtDays.value=="")
	{
	alert("error!");
	}
	else
	{	
	TxtcalcPrice.value=(parseFloat(TxtcalcPrice.value)-parseFloat(eurprice)).toFixed(2);
	TxtDays.value=parseFloat(TxtDays.value)-time;
	hind.value=parseInt(hind.value)-honor;	
	if (location=="EUR")
	{

	    if(parseInt(hind.value)>75000)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*0.97*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)>50000 && parseInt(hind.value)<75000)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*0.98*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)>25000 && parseInt(hind.value)<50000)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*0.99*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)<25000 && parseInt(hind.value)>0)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)==0)
		{
		TxtDiscountPrice.value=0;
		}
	}
	if (location=="USD")
	{
	    if(parseInt(hind.value)>75000)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*0.97*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)>50000 && parseInt(hind.value)<75000)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*0.98*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)>25000 && parseInt(hind.value)<50000)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*0.99*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)<25000 && parseInt(hind.value)>0)
		{
		TxtDiscountPrice.value=(parseFloat(TxtcalcPrice.value)*parseFloat(discount)).toFixed(2);
		}
		if(parseInt(hind.value)==0)
		{
		TxtDiscountPrice.value=0;
		}
	}
	if(TxtDiscountPrice.value==0)
	{
	sale.value=0;
	}
	else
	{
	sale.value=((1-parseFloat(TxtDiscountPrice.value)/parseFloat(TxtcalcPrice.value))*100).toFixed(2);
	}
	}
	

}

function addmemoinfo(infocode)
{
var memoinfo=document.getElementById("memoinfo");
memoinfo.value=memoinfo.value+infocode;
}

function submemoinfo(infocode)
{
var memoinfo=document.getElementById("memoinfo");
memoinfo.value=memoinfo.value.replace(infocode,"");
}




function account1(eurprice,time,honor,location)
{
	var CheckBox1=document.getElementById("CheckBox1");
	if(CheckBox1.checked == true)
	{
		/*var clacprice=document.getElementById("TxtcalcPrice").value;
		FeiYang.SaleWeb.WOW.WorldOfWarcraft_Honor_Equipment.Guardian_PvP_item_sets.account(eurprice,time,honor,clacprice);*/
	    addmemoinfo("1,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	    submemoinfo("1,")
		subaccount(eurprice,time,honor,location)	
	}	
	
}


function account2(eurprice,time,honor,location)
{
	var CheckBox2=document.getElementById("Checkbox2");
	if(CheckBox2.checked == true)
	{	
	    addmemoinfo("2,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	    submemoinfo("2,")
		subaccount(eurprice,time,honor,location)	
	}	
	
}
function account3(eurprice,time,honor,location)
{
	var CheckBox3=document.getElementById("Checkbox3");
	if(CheckBox3.checked == true)
	{	
		addmemoinfo("3,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
		 submemoinfo("3,")
		subaccount(eurprice,time,honor,location)	
	}	
	
}
function account4(eurprice,time,honor,location)
{
	var CheckBox4=document.getElementById("Checkbox4");
	if(CheckBox4.checked == true)
	{	
	addmemoinfo("4,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("4,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account5(eurprice,time,honor,location)
{
	var CheckBox5=document.getElementById("Checkbox5");
	if(CheckBox5.checked == true)
	{	
	addmemoinfo("5,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("5,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account6(eurprice,time,honor,location)
{
	var CheckBox6=document.getElementById("Checkbox6");
	if(CheckBox6.checked == true)
	{	
	addmemoinfo("6,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("6,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account7(eurprice,time,honor,location)
{
	var CheckBox7=document.getElementById("Checkbox7");
	if(CheckBox7.checked == true)
	{	
	addmemoinfo("7,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("7,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account8(eurprice,time,honor,location)
{
	var CheckBox8=document.getElementById("Checkbox8");
	if(CheckBox8.checked == true)
	{	
	addmemoinfo("8,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("8,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account9(eurprice,time,honor,location)
{
	var CheckBox9=document.getElementById("Checkbox9");
	if(CheckBox9.checked == true)
	{	
	addmemoinfo("9,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("9,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account10(eurprice,time,honor,location)
{
	var CheckBox10=document.getElementById("Checkbox10");
	if(CheckBox10.checked == true)
	{	
	addmemoinfo("10,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("10,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account11(eurprice,time,honor,location)
{
	var CheckBox11=document.getElementById("Checkbox11");
	if(CheckBox11.checked == true)
	{	
	addmemoinfo("11,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("11,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account12(eurprice,time,honor,location)
{
	var CheckBox12=document.getElementById("Checkbox12");
	if(CheckBox12.checked == true)
	{	
	addmemoinfo("12,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("12,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account13(eurprice,time,honor,location)
{
	var CheckBox13=document.getElementById("Checkbox13");
	if(CheckBox13.checked == true)
	{	
	addmemoinfo("13,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("13,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account14(eurprice,time,honor,location)
{
	var CheckBox14=document.getElementById("Checkbox14");
	if(CheckBox14.checked == true)
	{	
	addmemoinfo("14,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("14,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account15(eurprice,time,honor,location)
{
	var CheckBox15=document.getElementById("Checkbox15");
	if(CheckBox15.checked == true)
	{	
	addmemoinfo("15,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("15,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account16(eurprice,time,honor,location)
{
	var CheckBox16=document.getElementById("Checkbox16");
	if(CheckBox16.checked == true)
	{	
	addmemoinfo("16,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("16,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account17(eurprice,time,honor,location)
{
	var CheckBox17=document.getElementById("Checkbox17");
	if(CheckBox17.checked == true)
	{	
	addmemoinfo("17,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("17,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account18(eurprice,time,honor,location)
{
	var CheckBox18=document.getElementById("Checkbox18");
	if(CheckBox18.checked == true)
	{	
	addmemoinfo("18,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("18,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account19(eurprice,time,honor,location)
{
	var CheckBox19=document.getElementById("Checkbox19");
	if(CheckBox19.checked == true)
	{	
	addmemoinfo("19,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("19,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account20(eurprice,time,honor,location)
{
	var CheckBox20=document.getElementById("Checkbox20");
	if(CheckBox20.checked == true)
	{	
	addmemoinfo("20,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("20,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account21(eurprice,time,honor,location)
{
	var CheckBox21=document.getElementById("Checkbox21");
	if(CheckBox21.checked == true)
	{	
	addmemoinfo("21,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("21,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account22(eurprice,time,honor,location)
{
	var CheckBox22=document.getElementById("Checkbox22");
	if(CheckBox22.checked == true)
	{	
	addmemoinfo("22,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("22,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account23(eurprice,time,honor,location)
{
	var CheckBox23=document.getElementById("Checkbox23");
	if(CheckBox23.checked == true)
	{	
	addmemoinfo("23,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("23,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account24(eurprice,time,honor,location)
{
	var CheckBox24=document.getElementById("Checkbox24");
	if(CheckBox24.checked == true)
	{	
	addmemoinfo("24,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("24,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account25(eurprice,time,honor,location)
{
	var CheckBox25=document.getElementById("Checkbox25");
	if(CheckBox25.checked == true)
	{	
	addmemoinfo("25,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("25,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account26(eurprice,time,honor,location)
{
	var CheckBox26=document.getElementById("Checkbox26");
	if(CheckBox26.checked == true)
	{	
	addmemoinfo("26,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("26,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account27(eurprice,time,honor,location)
{
	var CheckBox27=document.getElementById("Checkbox27");
	if(CheckBox27.checked == true)
	{	
	addmemoinfo("27,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("27,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account28(eurprice,time,honor,location)
{
	var CheckBox28=document.getElementById("Checkbox28");
	if(CheckBox28.checked == true)
	{	
	addmemoinfo("28,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("28,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account29(eurprice,time,honor,location)
{
	var CheckBox29=document.getElementById("Checkbox29");
	if(CheckBox29.checked == true)
	{	
	addmemoinfo("29,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("29,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account30(eurprice,time,honor,location)
{
	var CheckBox30=document.getElementById("Checkbox30");
	if(CheckBox30.checked == true)
	{	
	addmemoinfo("30,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("30,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account31(eurprice,time,honor,location)
{
	var CheckBox31=document.getElementById("Checkbox31");
	if(CheckBox31.checked == true)
	{	
	addmemoinfo("31,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("31,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account32(eurprice,time,honor,location)
{
	var CheckBox32=document.getElementById("Checkbox32");
	if(CheckBox32.checked == true)
	{	
	addmemoinfo("32,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("32,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account33(eurprice,time,honor,location)
{
	var CheckBox33=document.getElementById("Checkbox33");
	if(CheckBox33.checked == true)
	{	
	addmemoinfo("33,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("33,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account34(eurprice,time,honor,location)
{
	var CheckBox34=document.getElementById("Checkbox34");
	if(CheckBox34.checked == true)
	{	
	addmemoinfo("34,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("34,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account35(eurprice,time,honor,location)
{
	var CheckBox35=document.getElementById("Checkbox35");
	if(CheckBox35.checked == true)
	{	
	addmemoinfo("35,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("35,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account36(eurprice,time,honor,location)
{
	var CheckBox36=document.getElementById("Checkbox36");
	if(CheckBox36.checked == true)
	{	
	addmemoinfo("36,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("36,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account37(eurprice,time,honor,location)
{
	var CheckBox37=document.getElementById("Checkbox37");
	if(CheckBox37.checked == true)
	{	
	addmemoinfo("37,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("37,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account38(eurprice,time,honor,location)
{
	var CheckBox38=document.getElementById("Checkbox38");
	if(CheckBox38.checked == true)
	{	
	addmemoinfo("38,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("38,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account39(eurprice,time,honor,location)
{
	var CheckBox39=document.getElementById("Checkbox39");
	if(CheckBox39.checked == true)
	{	
	addmemoinfo("39,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("39,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account40(eurprice,time,honor,location)
{
	var CheckBox40=document.getElementById("Checkbox40");
	if(CheckBox40.checked == true)
	{	
	addmemoinfo("40,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("40,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account41(eurprice,time,honor,location)
{
	var CheckBox41=document.getElementById("Checkbox41");
	if(CheckBox41.checked == true)
	{	
	addmemoinfo("41,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("41,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account42(eurprice,time,honor,location)
{
	var CheckBox42=document.getElementById("Checkbox42");
	if(CheckBox42.checked == true)
	{	
	addmemoinfo("42,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("42,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account43(eurprice,time,honor,location)
{
	var CheckBox43=document.getElementById("Checkbox43");
	if(CheckBox43.checked == true)
	{	
	addmemoinfo("43,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("43,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account44(eurprice,time,honor,location)
{
	var CheckBox44=document.getElementById("Checkbox44");
	if(CheckBox44.checked == true)
	{	
	addmemoinfo("44,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("44,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account45(eurprice,time,honor,location)
{
	var CheckBox45=document.getElementById("Checkbox45");
	if(CheckBox45.checked == true)
	{	
	addmemoinfo("45,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("45,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account46(eurprice,time,honor,location)
{
	var CheckBox46=document.getElementById("Checkbox46");
	if(CheckBox46.checked == true)
	{	
	addmemoinfo("46,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("46,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account47(eurprice,time,honor,location)
{
	var CheckBox47=document.getElementById("Checkbox47");
	if(CheckBox47.checked == true)
	{	
	addmemoinfo("47,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("47,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account48(eurprice,time,honor,location)
{
	var CheckBox48=document.getElementById("Checkbox48");
	if(CheckBox48.checked == true)
	{	
	addmemoinfo("48,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("48,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account49(eurprice,time,honor,location)
{
	var CheckBox49=document.getElementById("Checkbox49");
	if(CheckBox49.checked == true)
	{	
	addmemoinfo("49,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("49,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account50(eurprice,time,honor,location)
{
	var CheckBox50=document.getElementById("Checkbox50");
	if(CheckBox50.checked == true)
	{	
	addmemoinfo("50,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("50,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account51(eurprice,time,honor,location)
{
	var CheckBox51=document.getElementById("Checkbox51");
	if(CheckBox51.checked == true)
	{	
	addmemoinfo("51,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("51,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account61(eurprice,time,honor,location)
{
	var CheckBox61=document.getElementById("Checkbox61");
	if(CheckBox61.checked == true)
	{	
	addmemoinfo("61,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("61,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account62(eurprice,time,honor,location)
{
	var CheckBox62=document.getElementById("Checkbox62");
	if(CheckBox62.checked == true)
	{	
	addmemoinfo("62,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("62,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account63(eurprice,time,honor,location)
{
	var CheckBox63=document.getElementById("Checkbox63");
	if(CheckBox63.checked == true)
	{	
	addmemoinfo("63,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("63,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account64(eurprice,time,honor,location)
{
	var CheckBox64=document.getElementById("Checkbox64");
	if(CheckBox64.checked == true)
	{	
	addmemoinfo("64,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("64,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account65(eurprice,time,honor,location)
{
	var CheckBox65=document.getElementById("Checkbox65");
	if(CheckBox65.checked == true)
	{	
	addmemoinfo("65,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("65,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account66(eurprice,time,honor,location)
{
	var CheckBox66=document.getElementById("Checkbox66");
	if(CheckBox66.checked == true)
	{	
	addmemoinfo("66,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("66,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account67(eurprice,time,honor,location)
{
	var CheckBox67=document.getElementById("Checkbox67");
	if(CheckBox67.checked == true)
	{	
	addmemoinfo("67,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("67,")
		subaccount(eurprice,time,honor,location)	
	}	
}
function account68(eurprice,time,honor,location)
{
	var CheckBox68=document.getElementById("Checkbox68");
	if(CheckBox68.checked == true)
	{	
	addmemoinfo("68,");
	    addaccount(eurprice,time,honor,location)
	}
	else
	{
	submemoinfo("68,")
		subaccount(eurprice,time,honor,location)	
	}	
}

