function show(content){

switch (content)
{
case 1:
	document.getElementById("h2topic").innerHTML = "Most Popular EZ links";

	AJLoader('http://ez.fi/core/besturls.html','linktable');
break;

case 2: 
	document.getElementById("h2topic").innerHTML = "Recently EZ\'ed links"; 

	// make a rendom number to fool browser cache
	crand = parseInt(Math.random()*99999999);
	pagename = 'http://ez.fi/core/newurls.php';

	AJLoader(pagename+"?rnd"+crand,'linktable');
break;
}


}

