
/* - anr.js - */
/* Opens the hypotheek calculator */

jq(document).ready(function() {
    jq('a.calculator').click(function() {
        var theURL = "https://www.aegon.nl/module/tp/bereken/hypotheekcalculator/index.html?nummerTP=000000&emailTP=info@mijnbedrijf[dot]nl&extT1=HypotheekCalculator&extACTIE=&extC1=%23FFFFFF&extC2=%23FF8604&extC3=%23D2F0F2&extC4=%23FFCC99&extC5=%23235FA7&extC6=%23FF8604&extC7=%23FFFFFF";
        var winName = "winHypotheekCalculator";
        var width = 600;
        var height = 470;
        var winl = (screen.width - width) / 2;
        var wint = (screen.height - height) / 2;
        var i = width;
        var j = height;
        var features 
        = 'scrollbars=no,resizable=no,width='+width+',height='+height+',top='+wint+',left='+winl+'';
        var myPopup=window.open(theURL,winName,features);
        myPopup.focus();
    });
});


