function mailerConfirm(ref){
	if (confirm('We welcome your comments and inquiries.  If you are not a current client, \nplease do not send us any information about legal matters in which \nyou may be involved until you have made direct contact with one of our \nattorneys.  Please note that email is not a secured form of communication.')){
		window.location.href = ref;}
	}
	
function clearText(field){

    if (field.defaultValue == field.value) field.value = '';
    else if (field.value == '') field.value = field.defaultValue;

}

function jumpMenu(select){
 var i = select.selectedIndex;
 var selection = select.options[i].value;
 var url;
 if (i = 0) {
  alert("Please select a practice.");
 } else {
  url = "/" + selection;
  location.href = url;
 }
}


