function openPopup(_str) {
    url = 'store_values.php?professional=' + escape(self.document.forms[0].professional.value) + '&taxconsultant=' + escape(self.document.forms[0].taxconsultant.value);
    self.document.location = url;
    Win = window.open(_str,'Popup','scrollbars=yes, resizable=yes, width=600, height=400, status=no, location=no, toolbar=no');
    return false;
}

function onPopupClose() {    
    self.opener.location=self.opener.location;
    self.close();
}

function recommPopup(_url) {
        openWin = window.open(_url,'RecommendSite','scrollbars=no, resizable=yes, width=480, height=420, status=no, location=no, toolbar=no');
    }