function isPhone(sms_phone){
	var areaPattern = new RegExp("^([0-9]{10})$","g");
	if (areaPattern.test(sms_phone))
	{
	   return true;
	} 
	return false;     
}

function showonetime(){
var selectedEffect = "bounce";
var options = {};
//run the effect
$("#onetime").show(selectedEffect,options,500);
$("#regular").hide();
};
function showregular(){
var selectedEffect = "bounce";
var options = {};
//run the effect
$("#regular").show(selectedEffect,options,500);
$("#onetime").hide();
};
