
window.onload = function() {
    var links = document.getElementsByTagName('a');
    for (var i=0;i < links.length;i++) {
        if (links[i].className == 'main-frame') {
            links[i].onclick = function() {               
            top.location.href = this.href;
                return false;
            };
        }
        if (links[i].className == 'new-window') {
            links[i].onclick = function() {
                window.open(this.href);
                return false;
            };
        } 
    }
};


function linkTo(nUrl) {


top.opener.location.href = nUrl;
}



document.write("<link href='templates/default/css/system/affordability_js.css' type='text/css' rel='stylesheet' />")


