function esdwl(str) {
	document.writeln(str);
}

esdwl('<div id="es_processing_bar" style="filter: Alpha(Opacity=80); position:absolute; left:0px; top:0px; width:100%; height:100%; z-index:1; background-color: #FFFFFF; layer-background-color: #FFFFFF; border: 1px none #000000; visibility: hidden;">');
esdwl('<table width=100% height=100% border=0><tr><td align=center valign=middle>');
esdwl('<table width="250" border="1" align="center" bordercolor="#999999" bgcolor="#EEEEEE">');
esdwl('	<tr>');
esdwl('		<td align=center>');
esdwl('			<font style="font-family: verdana; font-size: 11px;"><b><br>PROCESSING<br><br>Please be patient.<br>&nbsp;</b></font>');
esdwl('		</td>');
esdwl('	</tr>');
esdwl('</table>');
esdwl('</td></tr></table>');
esdwl('</div>');

function es_processing_move_center() {
	es_processing_bar.style.left=((document.body.offsetWidth-parseFloat (es_processing_bar.style.width))/2)+document.body.scrollLeft;
	es_processing_bar.style.top=((document.body.offsetHeight-parseFloat (es_processing_bar.style.height))/2)+document.body.scrollTop;
}

function es_disable_all() {
	for (i = 0; i < document.forms.length; i++) {
		for(j = 0; j < document.forms[i].elements.length; j++)
			document.forms[i].elements[j].style.visibility = 'hidden';
	}
}

function el(t) {
	es_processing_bar.style.top=document.body.scrollTop;
	es_disable_all();
	if (typeof(t) != "undefined") {
		if (confirm(t)) {
			document.body.scroll='no';
			es_processing_bar.style.visibility='visible';
			return true;
		} else {
			return false;
		}
	} else {
		document.body.scroll='no';
		es_processing_bar.style.visibility='visible';
		return true;
	}
}