<!--
function MkHTMLBox(content,thickness,w,h,bgcolor,hicolor,lowcolor) {
 alert(Box);
 var res='<table cellspacing=0 cellpadding=0 bgcolor='+bgcolor+
		' style="border: '+thickness+'px outset '+hicolor+'">' +
		'<tr><td width='+w+' height='+h+'>' + content + '</table>';

  return res;

}

function MkHTMLBorder(content,thickness,w,h,bordercolor,bgcolor) {
 return MkHTMLBox(content,thickness,w,h,bgcolor,bordercolor,bordercolor);
}

function MkHTMLTextLabel(content,background,w,h) {
 alert(Label);
 var res='<table border=0 cellspacing=0 cellpadding=0 width='+w+' height='+h+'><tr><td width='+w+' height='+h+' background="'+background+'">'+
	content +
	'</td></tr></table>';
 return res;
}
//-->
