
function show_helpbox(id, title, text) {

//alert("show_helpbox");

var state = document.getElementById(id).innerHTML;
helpbox = '';

if (state == '') {
	
	var helpbox = 		'<div class="infobox">'+
							'<div class="info">'+ title + '</div>'+
							'<table cellpadding="0" cellspacing="0" border="0">'+
								'<tr>'+
									'<td>'+ text + '</td>'+
								'</tr>'+
							'</table>'+
						'</div>';
	
	

}

document.getElementById(id).innerHTML = helpbox;

}

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

