/**
 * ETL javascript funtions
 */
 
function onInputFocus( objElem, strValue )
{
	if ( objElem.value == strValue ) {
		objElem.value = '';
	}
}
function onInputBlur( objElem, strValue )
{
	if ( objElem.value == '' ) {
		objElem.value = strValue;
	}
}

