<!--
//================================================================== DIRECT DEPOSIT ====================

function showddDialog(top,left,width,height){
	var accNum=window.Lib.getcontrol('rb-AccNum');
	s="";
	s+="<table class='oB1W' cellspacing='0' cellpadding='0'>";	
				
	s+="<tr>";	
	s+="	<td width='80' height='5'></td>";
	s+="	<td align='left' width='"+ width +"'></td>";
	s+="</tr>";
		
	s+="<tr>";
	s+="	<td width='10'></td>";	
	s+="	<td class='c-u11' height='"+ height +"' valign='top'>";
	
	s+="<table>";
	s+="<tr>";
	s+="	<td width='20' height='30'></td>";
	s+="	<td class='cb-o12'>Please confirm your checking account number:</td>";
	s+="	<td width='20' height='5'></td>";
	s+="</tr>";
	s+="</table>";

	s+="<table>";
	s+="<tr>";
	s+="	<td width='20'></td>";
	s+="	<td class='cb-g12'>"+ accNum.value +"<br>";
	s+="		<input id='dv-AccNum' class='c-b11' size='40'></td>";
	s+="	<td width='20' height='5'></td>";
	s+="</tr>";
	s+="</table>";

	s+="<table>";
	s+="<tr>";
	s+="	<td width='20'></td>";
	s+="	<td><span class='cb-r11' id='lblMessage'></span></td>";
	s+="	<td width='20' height='5'></td>";
	s+="</tr>";
	s+="</table>";	
	
	s+="</td>";
	s+="</tr>";
	
	s+="<tr><td height='5' colspan='2'></td></tr>";	
		
	s+="<tr>";
	s+="	<td width='10'></td>";
		
	s+="<td align='right'>";
	s+="	<input class='btn-ora' type='button' value='  << Back  '"; 
	s+="			onclick=window.Lib.hidelayer('eleminfo');>&nbsp;&nbsp;&nbsp;";	
	s+="	<input class='btn-ora' type='button' value='  Next >>  ' name='btnNext'";
	s+="		onclick=btnNext_Clicked()>";
	s+="	&nbsp;&nbsp;&nbsp;";
	s+="</td>";	
	s+="</tr>";	
	s+="<tr><td height='5' colspan='2'></td></tr>";		
	s+="</table>";

	window.Lib.writetolayer('eleminfo',s);
	window.Lib.showlayer('eleminfo');
	window.Lib.movelayer('eleminfo',top,left);
}//-- end 

function printETimeMessage(){
	// pops up after a eTime card has been submited
	var s="";
	s+="<table><tr><td width='200' height='15'></td></tr></table>";
		
	s+="<span class='c-b11'>";
	s+="Please note that after you have selected to print your timesheet a print dialog&nbsp;&nbsp;<br>";
	s+="box will open, please be patient as it can take up to a minute to pop up<br>";
	s+="depending upon the connection speed and type of browser";
	s+="</span>";

	s+="<table>";
	s+="<tr>";
		
	s+="<td width='360' align='right'>";
	s+="	<a class='l1-ora' href=javascript:onETimePrint('',0,'right-box')>Print</a>";
	s+="</td>";
		
	s+="<td align='right' width='50'>";
	s+="	<a class='l1-blu' href=javascript:window.Lib.hidelayer('eleminfo')>Close</a>";
	s+="</td>";
		
	s+="</tr>";
	s+="</table>";
		
	s+="<table><tr><td width='200' height='15'></td></tr></table>";	
	runPopupShell(0,0,250,150,s,"buttonDisabled","eleminfo","c-b11");	
}