FUNCTION eis_five_pc_dialog , new_start , tlbID

line1	 = '--  5% Rule Violated  --'
line2	 = 'New time-tagged entry may interrupt the previous entry!'
new_time = anytim2utc(new_start,/stime)
text_str = 'Start time should be at least:'
line3	 = STRJOIN([text_str,new_time],' ',/SINGLE)
line4	 = 'Use this time?'
mText	 = [line1,'',line2,'',line3,'',line4]
question = DIALOG_MESSAGE(mText, /QUESTION , DIALOG_PARENT = tlbID , /CANCEL)


RETURN , question


END
