function paintLayer( _iId, _bTop ) {
	
	if ( document.getElementById(_iId) ) {
		if ( _bTop ) {
			document.getElementById(_iId).style.margin = '16px 4px 0 0' ;
		}
		else {
			document.getElementById(_iId).style.margin = '40px 4px 0 0' ;
		}
	}		
}
