function initWidget(p_BoxID) {
	document.getElementById(p_BoxID).style.display = '';
	document.getElementById(p_BoxID).style.border = '1px solid #666';
	document.getElementById(p_BoxID).style.backgroundColor = '#eaeef9';
	document.getElementById(p_BoxID).style.color = '#222';
	document.getElementById(p_BoxID).style.fontFamily = 'Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif';
	document.getElementById(p_BoxID).style.fontSize = '11px';
	document.getElementById(p_BoxID).style.padding = '5px';
	document.getElementById(p_BoxID).style.width = '250px';
	document.getElementById(p_BoxID).style.backgroundImage = 'url(http://ebizvaluations.com/img/logo.gif)';
	document.getElementById(p_BoxID).style.backgroundPosition = 'bottom right';
	document.getElementById(p_BoxID).style.backgroundRepeat = 'no-repeat';
	document.getElementById(p_BoxID).innerHTML = '<div style="font-size: 10px; color: #777; font-weight: normal;">Loading ...</div>';
}