function popup(url, w, h) {
  okno = window.open('','popup','width='+w+',height='+h+',left=20,top=20,location=0,menubar=0,resizable=1,scrollbars=0,status=0,titlebar=0,toolbar=0');
	okno.document.write('<html>\n<head>\n');
	okno.document.write('<meta http-equiv="content-type" content="text/html; charset=utf-8">\n');
	okno.document.write('<meta http-equiv="content-language" content="cs">\n');
	okno.document.write('<title>časopis Cinema - filmový magazín</title>\n');
	okno.document.write('</head>\n<body style="padding:0; margin:0;" onclick="window.close();">\n<div>\n');
	okno.document.write('<img src="' + url + '" alt="zavřít okno" title="zavřít okno" />\n');
	okno.document.write('</div>\n</body>\n</html>');
	okno.document.close();
  return false;
}

function counter(obj) {
  var chars = 160;
	var str = obj.value;
	var strlen = str.length;

  document.getElementById('counter').firstChild.data = strlen;
	if(strlen > chars) {
		obj.value = obj.value.substring(0, chars);
		document.getElementById('counter').firstChild.data = chars;
	}

}