function ShowPage(url)
{
	$("#content").html('<p><img src="loading.gif" /></p>');
	$.post(url,{},function (data){$("#content").html(data);});
}

