function show(name) {
	document.getElementById(name).style.display = 'block';
}

function hide(name) {
	document.getElementById(name).style.display = 'none';
}

function writeLogImg() {
	document.write(
		'<img src="http://toplist.cz/count.asp?'+
			'id=806570&amp;'+
			'logo=s&amp;'+
			'http='+escape(document.referrer)+'&amp;'+
			'wi='+escape(window.screen.width)+'&amp;'+
			'he='+escape(window.screen.height)+'&amp;'+
			'cd='+escape(window.screen.colorDepth)+'&amp;'+
			't='+escape(document.title)+
		'" width="14" height="14" alt="TOPlist" style="border: none;vertical-align: middle;">');
}

function showNote(body) {
	var width = 600;
	var height = 600;
	var left = parseInt((screen.availWidth/2) - (width/2));
	var top = parseInt((screen.availHeight/2) - (height/2));
	var page = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">'+
		'<html>'+
		'<head>'+
		'	<title>Oznámení</title>'+
		'	<meta name="generator" content="EditPlus">'+
		'	<meta name="author" content="Aaka Fosfor; FOSFOR software; fosfor.software@seznam.cz; 2009">'+
		'	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'+
		'	<link rel="stylesheet" type="text/css" href="./?action=getcss">'+
		'</head>'+
		'<body>'+
		'	<div id="note-main">'+
		'		<div id="body">'+Base64.decode(body)+'</div>'+
		'		<div id="note-foot">'+
		'			<a href="javascript:window.close();">[Zavřít]</a>'+
		'		</div>'+
		'	</div>'+
		'</body>'+
		'</html>';
	
	noteWindow = window.open('', 'note', 'toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top);
	noteWindow.document.write(page);
}