function wadLeafBox( x, y )
{
	if( x == undefined || y == undefined )
	{
		return;
	}
	// aleksejs savas koordinātes sāka ar 1
	x--;
	y--;
	var response = openXmlHttpGet( location.href + '?x=' + x + '&y=' + y, true );
	if( response == false )
	{
		return;
	}
	var params = 
	{
		width: 710,
		height: 460,
		style: 'wad',
		type: 'page',
		url: response + '?leafBox=wad&unique=' + Math.random() + (new Date()).getTime()
	};
	leafBox.show( params );
}