/*Source file: ~/Modules/Core/Scripts/CommonUI.js*/
function DefaultInputFocus(id) {
var el = document.getElementById(id);
if (el.value == '') {
el.className = el.className.replace('background', '');
}
}
function DefaultInputBlur(id) {
var el = document.getElementById(id);
if (el.value == '') { el.className += ' background'; }
}
