
$(document).ready(function(){
	
	// Add a warning to the mobile phone field on blur in the subscriptions form sign up
	$("#contentControl_dcPageContent_MintoxPlaceHolder_1_MobilePhone_regMobilePhone").append(' Please do not enter spaces or country code symbols.');
	
	$("#contentControl_dcPageContent_MintoxPlaceHolder_1_MobilePhone_txtMobilePhone").focus(function () {
         $(this).next("span").show();
    });

	$("#contentControl_dcPageContent_MintoxPlaceHolder_1_MobilePhone_txtMobilePhone").blur(function () {
         $(this).next("span").hide();
    });

	
	// Add a warning to the company phone field on blur in the subscriptions form sign up
	$("#contentControl_dcPageContent_MintoxPlaceHolder_1_CompanyPhone1_reqCompanyPhone1").append(' Please do not enter spaces or country code symbols.');
	
	$("#contentControl_dcPageContent_MintoxPlaceHolder_1_CompanyPhone1_txtCompanyPhone1").focus(function () {
         $(this).next("span").show();
    });

	$("#contentControl_dcPageContent_MintoxPlaceHolder_1_CompanyPhone1_txtCompanyPhone1").blur(function () {
         $(this).next("span").hide();
    });
	
	
});
