//calculator subnet 4 onFocus
function c_s4_focus(field){
  alert(field.name);
}

function calc_subnet4_init(){
  var subnet4 = document.getElementById('calc_subnet4');
  subnet4.ip_address.onFocus = 'calc_subnet4_focus(this)';
}

//calc_subnet4_init();
