// JavaScript Document
function checkMobileAmt(){
	str=getObj("wkCardFillAmtTxt").value;
	rex=/^[1-9]\d*0$/;


	if(str.match(rex)==str&&parseInt(str,10)<=100&&parseInt(str,10)>=50&&parseInt(str,10)%50==0)
		return true;
	else{
		alert("充值金额仅限于50或100");
		getObj("wkCardFillAmtTxt").focus();
		return false;
	}

//	if(str.match(rex)==str&&parseInt(str,10)==50)
//		return true;
//	else{
//		alert("请输入正确的充值金额，目前只支持50元的充值金额。");
//		getObj("wkCardFillAmtTxt").focus();
//		return false;
//	}

}

