function showMapWindow(url) { // window.open(href, windowname, 'width=400,height=200,scrollbars=yes'); var newWidth=500; var newHeight=350; win_=window.open(url , "win_popup", "width="+newWidth+", height="+newHeight+", resizable=1, status=yes, scrollbars=0, left=100,top=150"); win_.focus(); return; } function showDetailsWindow(id) { // window.open(href, windowname, 'width=400,height=200,scrollbars=yes'); var newWidth=500; var newHeight=350; win_=window.open("../find_a_therapist/member_details.php?&id="+id , "win_details", "width="+newWidth+", height="+newHeight+", resizable=1, status=yes, scrollbars=1, left=100,top=150"); win_.focus(); return; } function showFullDetailsWindow(id) { // window.open(href, windowname, 'width=400,height=200,scrollbars=yes'); var newWidth=500; var newHeight=350; win_=window.open("../find_a_therapist/member_full_details.php?&id="+id , "win_details", "width="+newWidth+", height="+newHeight+", resizable=1, status=yes, scrollbars=1, left=100,top=150"); win_.focus(); return; } function focus_on_keyword() { if (document.getElementById["keyword"]) document.getElementById["keyword"].focus(); } function forgotPwd() { win_popup_new_client = window.open('/popups/forgot_password.php', 'forgot_password', 'width=400, height=250, resizable, scrollbars=1'); win_popup_new_client.moveTo(100,0);win_popup_new_client.focus(); } function reloadAddressDetails() { var selectedItem = document.form_choose_address.practice_address.options[document.form_choose_address.practice_address.selectedIndex].value; window.location.href=("?practice_address="+ selectedItem); }