var recaptcha1;
var recaptcha2;
var myCallBack = function() {
//Render the recaptcha1 on the element with ID "recaptcha1"
recaptcha1 = grecaptcha.render('recaptcha1', {
'sitekey' : '6LfoPyMTAAAAAPZdBAVWmxOVXkfhvt-wduCXUTkt', //Replace this with your Site key
'theme' : 'light'
});
recaptcha2 = grecaptcha.render('recaptcha2', {
'sitekey' : '6LdqPiMTAAAAAG9puAI4eLWjA2Qf3K6GiwYb8SVk', //Replace this with your Site key
'theme' : 'light'
});
};