// Mailform Pro Javascript Library execution is complete // // SYNCK GRAPHICA // mailformpro language file // 2014-04-10 ver 4.1.3 // var mfpLang = { 'ResetConfirm': 'Are you sure you want to reset ?', 'Price': '$ $1', 'PostPrice': '$ $1', 'ButtonSend': 'Send', 'ButtonCancel': 'Cancel', 'ButtonNext': '$1 Next >', 'ButtonPrev': '< $1 Prev', 'Phase': 'Step.$1', 'PhaseConfirm': 'Confirmation', 'ConfirmTitle': '

Please check the entered details

', 'ConfirmMessage': 'I Are you sure you want to send ?', 'CloseConfirmMessage': 'Content in the input will be discarded.', 'TimeDay': '$1 day', 'TimeHour': '$1 hours', 'TimeMin': '$1 min', 'TimeSec': '$1 sec', 'ErrorCode1': '

Closed

', 'ErrorCode2': '

Closed

', 'ErrorCode3': '

Registration starts $1

', 'WarningCode1': '

remaining $1

', 'WarningCode2': '

$1 deadline

', 'WarningCode3': '

URL can not be sent

', 'ErrorCheckedType1': 'Check is incorrect', 'ErrorCheckedType2': '$name has not been checked more than $1', 'ErrorCheckedType3': 'Check is incorrect', 'ErrorCheckedType4': '$name has not been checked.', 'ErrorTextFieldType1': 'Please enter $name', 'ErrorTextFieldType2': '$name is not correct.', 'ErrorTextFieldType3': 'Re-entered E-mail address and E-mail address was not matched.', 'ErrorTextFieldType4': 'Wrong number of characters', 'ErrorTextFieldType5': 'Wrong number of characters', 'ErrorTextFieldType6': 'Wrong number of characters', 'ErrorTextFieldType7': 'Numeric input field has no characters.', 'ErrorTextFieldType8': 'Numeric input field has no characters.', 'ErrorNumberFieldType1': 'Please enter in the range of $1-$2 figures of $name.', 'ErrorNumberFieldType2': 'Please enter a value of more than $1 the number.', 'ErrorNumberFieldType3': 'Please enter the number of $1 or less number.', 'ErrorDateFieldType1': 'Please enter in the format YYYY-MM-DD', 'ErrorDateFieldType2': 'Date is incorrect', 'ErrorDateFieldType3': 'Date is incorrect', 'ErrorDateFieldType4': 'Date is incorrect', 'ErrorSelectFieldType1': '$name has not been selected.', 'ErrorFileFieldType1': '$name has not been selected.', 'ErrorFileFieldType2': '$name is a file that doesn’t correspond.', 'SpamBlockError': 'URL can not be sent', 'WarningCode': [ 'Javascript isn’t enabled.', 'You cannot send only English.', 'Contains an invalid character.', 'URL submission is not allowed.', 'Sending domain is not allowed.', 'Exceeds the limit.', 'Is outside the booking period.' ], 'ReservedWord': { 'email': 'E-mail', 'confirm_email': 'Confirmation', 'price': 'Price', 'keep_resume': 'Keep' }, 'SelfEvaluateType01': "Type 01 ERROR\nNot defined mailformpro", 'SelfEvaluateType02': "Type 02 ERROR\nCharacter encoding is not UTF-8" }; // // SYNCK GRAPHICA // mailformpro config file // Mailform Pro 4.2.5 / 2019-04-21 // var mfpConfigs = { 'Time': '1752954022', 'PageView': '21', 'InputTimeAVG': '325', 'LimitOver': '', 'Acceptable': '', 'OpenDate': '', 'CloseDate': '', 'DisableURI': '1', 'ResumeCancel': false, 'ConfirmationMode': '1', 'ResumeExpire': '', 'OverlayOpacity': 0.8, 'NoClassChange': false, 'LoadingScreen': true, 'ErrorFocusDisabled': false, 'LoadingImage': { 'width': 40, 'height': 40 }, 'SizeAjustPx': 6, 'Stripe': ['dt','dd','tr'], 'SoundEffect': false, 'SoundEffectDir': 'mfp.statics/audios/', 'SoundEffectPreset': ['click'], 'SoundEffectVolume': 0.3, 'mfpButton': '
 
' }; function MailformPro(){ this.affterEffect = function(e){ if(e.type == 'select-one'){ if(mfp.GET[e.name]){ e.value = mfp.GET[e.name]; } else if(mfp.Resume[mfp.Index.length-1] && !mfpConfigs['ResumeCancel']){ mfp.sandbox(function(){ e.selectedIndex = mfp.Resume[mfp.Index.length-1]; }); }; mfp.sizeajust(e); } else if(e.type == 'select-multiple'){ mfp.sizeajust(e); } else if(e.type == 'checkbox' || e.type == 'radio'){ if(e.name && !mfp.$('mfp_'+e.name+'_checkobj')){ var elm = document.createElement('input'); elm.type = 'hidden'; elm.name = 'mfp_'+e.name+'_checkobj'; elm.id = elm.name; elm.value = 1; if(e.nextSibling === null){ e.parentNode.appendChild(elm); } else { e.parentNode.insertBefore(elm, e.nextSibling); }; }; if(mfp.GET[e.name] == e.value){ e.checked = true; } else if(mfp.Resume[mfp.Index.length-1] == 1 && !mfpConfigs['ResumeCancel']){ mfp.sandbox(function(){e.checked = true;}); } else if(mfp.Resume[mfp.Index.length-1] == 0 && !mfpConfigs['ResumeCancel']){ mfp.sandbox(function(){e.checked = false;}); }; mfp.setlabel(e); } else { if(e.type != "text" && e.type != "textarea"){ e.style.imeMode = 'disabled'; }; if(mfp.GET[e.name]){ e.value = mfp.GET[e.name]; mfp.setresume(e); } else if(mfp.Resume[mfp.Index.length-1] && !mfpConfigs['ResumeCancel']){ mfp.sandbox(function(){ e.value = unescape(mfp.Resume[mfp.Index.length-1]); }); }; mfp.sizeajust(e); }; }; this.initialize = function(){ for(var i=0;i