function showDebug()
{
	var servercall = '<%# DataBinder.Eval(Container.DataItem, "FileStatus")%>';
	document.write('mirror: <b>' + "#" + mirrorid + ' - ' + mirrorname + '</b><br/>');
	document.write('maxxfer: <b>' + maxxfer + '</b><br/>');
	document.write('curxfer: <b>' + curxfer + '</b><br/>');
	document.write('sort ID: <b>' + sortid + '</b><br/>');
	document.write('evaluated server count: <b>' + y + '</b><br/>');
	document.write('available server count: <b>' + x + '</b><br/>');
	document.write('is dedicated server: <b>' + numDedicated + '</b><br/>');
	document.write('partial count: <b>' + numPartial + '</b><br/>');
	document.write('complete count: <b>' + numComplete + '</b><br/>');
	document.write('is file present: <b>' + present + '</b><br/>');
	document.write('is premium server: <b>' + premium + '</b><br/>');
	document.write('is server full: <b>' + isfull + '</b><br/>');
	document.write('<hr/>');		
}

function showTotalDebug()
{
	document.write('servers evaluated : <b>' + y + '</b><br/>');
	document.write('servers available: <b>' + x + '</b><br/>');
	document.write('dedicated: <b>' + numDedicated + '</b><br/>');
	document.write('partial: <b>' + numPartial + '</b><br/>');
	document.write('complete: <b>' + numComplete + '</b><br/>');
}

function reset()
{
	y = 0;
	x = 0;
	numDedicated = 0;
	numPartial = 0;
	numComplete = 0;
}

