function repC(str,whatS,withS){;
if(str!=null){;
return str.split(whatS).join(withS);
}else{;
return '';
};
};

function enterTrap(x){;
var y=document.getElementById(x).value;
document.getElementById(x).value=repC(y,' ','_');
};