function YhfPopup(w, h, p) {
var wnd;
wnd = window.open(p, 'yourhomefinder', 'width='+w+', height='+h+',top=50,left=100,resizable=yes,scrollbars=yes');
wnd.focus();
}

function YhfClickThrough(p, u) {
    var wnd;
    var oHTTP;
    
    if (window.XMLHttpRequest){
          // If IE7, Mozilla, Safari, etc: Use native object
          oHTTP = new XMLHttpRequest()
    }
    else 
    {
        if (window.ActiveXObject){
          // ...otherwise, use the ActiveX control for IE5.x and IE6
          oHTTP = new ActiveXObject("Microsoft.XMLHTTP"); 
          }
    }
    
    if (oHTTP != null) {
        oHTTP.open('GET', '/Goto.aspx?u='+u, true);
        oHTTP.send(null);
    }
    oHTTP = null;

    wnd = window.open(p, 'clickthrough', 'status=1,toolbar=1,location=1,menubar=1,resizable=1,scrollbars=1');
    wnd.focus();
}

