// JavaScript Document
function Preloader(msg){
	var otbl = new Table(3,2);
	with(otbl){
		//align = 'center';
		removeAttribute('width');
		
		with(rows[0].cells[0]){
			//height = 100;
			innerHTML = '&nbsp;';
		};
		
		with(rows[1]){
			with(cells[0]){
				align = 'center';
				vAlign = 'top';
				width = 20;
				innerHTML = '<img src="'+ pathLib +'/imgs/srch-loading.gif" width="15" height="15">';
			};
			
			with(cells[1]){
				innerHTML = msg;
			};
		};
		
		with(rows[2].cells[0]){
			//height = 100;
			innerHTML = '&nbsp;';
		};
	};
	
	return otbl;
};