function MyAlert(text,title)
{
	$("#top_div").html('');
	$("#top_div").html("<table class='main_table_with_border' align='center' cellspacing='0' cellpadding='0' border='0' bgcolor='#ffffff' width='370'><tbody><tr><td width='370' background='/img/design/bg_dialogbox.jpg' height='28'><table width='370' border='0' cellpadding='0' cellspacing='0'>	<tbody>		<tr><td class='titleheader_customize' width='199'>&nbsp;"+title+"</td>		<td width='201'><div align='right'><a href='javascript://' onclick='closeAlert()'><img src='/img/design/icon_close.jpg' width='25' border='0' height='19'></a></div></td>	</tr></tbody>			</table>	</td></tr>			<tr align='center'>		<td align='center'>&nbsp;</td>		</tr>		<tr align='center'>			<td align='center'>				<div id='err_main' class='verdana_14_red' align='center'>"+text+"</div></td></tr><tr align='center'><td align='center'>&nbsp;</td></tr>	</tbody></table>");
	$("#lock").css("display","block"); 
	$("#top_div").css("display","block");

};



function pasteText(text)
{
	
};


function closeAlert()
{
	$("#top_div").css("display","none"); 
	$("#lock").css("display","none");
};
