function initValues( lmts )
{
	for ( i=0 ; i<lmts.length ; i++ )
	{
		lmt = document.getElementById( lmts[i] );
		if( lmt)
		{
			lmt.style.color = '#999999';
			lmt.style.fontStyle = 'italic';
		}
	}
}
function setDefaultValue( lmt )
{
	if( lmt )
	{
		if( lmt.value == '' )
		{
			lmt.style.color = '#999999';
			lmt.style.fontStyle = 'italic';
			lmt.value = lmt.defaultValue;
		}
	}
}
function cleanDefaultValue( lmt )
{
	if( lmt )
	{
		if( lmt.value == lmt.defaultValue )
		{
			lmt.value = '';
		}
		lmt.style.color = '#000000';
		lmt.style.fontStyle = 'normal';
	}
}
