function onDownload(id, genre, type, target)
{
	var res = 'http://www.pozirk.com/redirect.php?id=' + id + '&rank=download&genre=' + genre + '&type=' + type;
	var win = window.open(res, target);
	if(!win)
		alert('Pop-up Blocker detected!\nWhen you see a light bar on the top of the page, please allow pop-ups from Pozirk Games, this helps you to download games.\nRead our Privacy Policy for further information.\nThank you!');
}

function onBuy(id, genre, type, target)
{
	var res = 'http://www.pozirk.com/redirect.php?id=' + id + '&rank=buy&genre=' + genre + '&type=' + type;
	window.open(res, target);
	if(!win)
		alert('Pop-up Blocker detected!\nWhen you see a light bar on the top of the page, please allow pop-ups from Pozirk Games, this helps you to download games.\nRead our Privacy Policy for further information.\nThank you!');
}

function onPage(action, num)
{
	var page = document.getElementById("page_" + num);
	if(page)
	{
		var val = parseInt(page.value);
		val += action;
		page.value = val;
	}
}