function OpenPopupPage( page )
{
	$.get( "/index.php",
			{
				call: 'getInformationPage',
				page: page,
				ajax: 'on'
			},
			function(data)
			{
				$.modal( HtmlEntityDecode( data.html ), { opacity: 50 } );
			},
		  	"json"
	);
	
	
}