function detectFileName()
{
	if (screen.height >= 960)
		return "1280x960.html";
	else if (screen.height >= 768)
		return "1024x768.html";
	else
		return "800x600.html";
}

function generateKolorowankiLink(shortName, title)
{
	var uri = "http://www.pokoloruj.pl/" + detectFileName();
	var res = "<a href=\"" + uri + "\" title=\"" + title + "\">" + shortName + "</a>";
	
	return res;
}
