
function checkBL(domain)
{
	loading_show();
	x_checkBacklinks(domain, checkingData );
}

var numLoadingx = 0;

function checkingData(x)
{
	loading_hide();
	var loadingx = document.getElementById('loadingx');
	if (!loadingx)
	{
		loadingx = document.createElement('div');
		loadingx.className = "backlinksBox";
		loadingx.id = 'loadingx';
		loadingx.innerHTML = '<font>' + x + '</' + 'font>';
		loadingx.style.position = 'absolute';
		loadingx.style.top = '4px';
		loadingx.style.right = '4px';
		loadingx.style.backgroundColor = 'maroon';
		loadingx.style.width = '100px';
		loadingx.style.padding = '2px';
		document.getElementsByTagName('body').item(0).appendChild(loadingx);
	}
	loadingx.style.display = 'block';
	numLoadingx++;
}

var numLoading1 = 0;

function loading_show1()
{
	var loading1 = document.getElementById('loading1');
	if (!loading1)
	{
		loading1 = document.createElement('div');
		loading1.id = 'loading1';
		loading1.innerHTML = '<font style="font-family:verdana; font-size:12px; color:white;"><img src="http://www.future-pagerank.com/images/progressbar2.gif" border=0></' + 'font>';
		loading1.style.position = 'absolute';
		loading1.style.top = '4px';
		loading1.style.right = '4px';
		//loading.style.backgroundColor = 'maroon';
		//loading.style.width = '65px';
		//loading.style.padding = '2px';
		document.getElementsByTagName('body').item(0).appendChild(loading1);
	}
	loading1.style.display = 'block';
	numLoading1++;
}

function loading_hidex()
{
	numLoading1--;
	if(numLoading1 < 1) {
		var loading1 = document.getElementById('loading1');
		if (loading1) {
			loading1.style.display = 'none';
		}
	}
}

function openPage()
{
	window.open( 'http://www.future-pagerank.com' );
}