(function() {

    var top = document.querySelector('head'); // reach out to the parent window and get the head element

    var script = document.createElement('script'); //create a new script element

    script.src = 'https://cdn.solvvy.com/deflect/customization/zoom/lazy-solvvy.js'; //sets the src attribute

    script.type = 'text/javascript'; //sets the type attribute

	script.charset = 'UTF-8';

    script.id = 'solvvy-script';

    top.appendChild(script); // appends the newly created script element at the end of the top window head element

})();