/* Edited by Dave buckthorpe for ZA Redesign */

/* Pop up window functions for whats it worth and finance calculator*/

function viewWhatsWorthPanel(URL) {
    var dleft = parseInt(self.screenLeft) + 310;
    var dtop = parseInt(self.screenTop) + 110;
    var suggWin = window.open(URL,'whats_worth','width=625,height=537,status=0,toolbar=0,menubar=0,location=0,resizeable=0,scrollbars=0,left=' + dleft + ",top=" + dtop );
    suggWin.focus();
}

// calculator popop window
function calculator(URL){
window.open(URL, 'Help', 'width=510,height=500, left=2, top=2,scrollbars,resizable');
}

