// added by tamara 6-24-08

//for phone entry boxes to move focus automatically
function autofocus(field, limit, next) {
                if (field.value.length == limit) {
                    field.form.elements[next].focus( );
                }
            }
//add up the values and open the pop-up			
function clickToCall(){
var phone = document.getElementById("phone1").value .concat(document.getElementById("phone2").value) .concat(document.getElementById("phone3").value);

window.open('http://www.ifbyphone.com/clickto_status.php?click_id=2146&phone_to_call=' + phone + '&key=152bb6443def6bf7b56f5a8eec98871e0435c79a', 'Clickto' , 'width=200,height=200,toolbar=no,location=no, menubar=no, scrollbars=no, copyhistory=no,resizable=no');

}