function MessageErrorBox(m_title,m_content) 
{ 
	
	var  m_html ="<table><tr><td><img src='./images/warning.gif' />&nbsp;&nbsp;</td><td>"+m_content+"</td></tr></table>";
    $('#messageBoxId').html(m_html);
   // alert($('#messageBoxId').innerHTML);
    $('#messageBoxId').dialog({
		title:m_title,
		autoOpen:true,
		minWidth: 150,
		dialogClass: 'messageerrorbox',
		resizable: false,
		modal: true,
		buttons:{'确定':function(){$(this).dialog('close');}}
		});
}
function MessageOkBox(m_title,m_content) 
{ 
	
	var  m_html ="<table><tr><td><img src='./images/warning.gif' />&nbsp;&nbsp;</td><td>"+m_content+"</td></tr></table>";
    $('#messageBoxId').html(m_html);
   // alert($('#messageBoxId').innerHTML);
    $('#messageBoxId').dialog({
		title:m_title,
		autoOpen:true,
		minWidth: 150,
		dialogClass: 'messageokbox',
		resizable: false,
		modal: true,
		buttons:{'确定':function(){$(this).dialog('close');}}
		});
}
