//
// This is a little annoyance that should confirm this is really an alive person and not a robot.
// It is annoying, indeed, but spam bots caught my blog and started to spread out so I had to
// write this piece of code that shows a string that should be typed in as anti-spam measure 
// before submitting comment. It is a lame piece of code and not a real "security" measure, but
// I just hope it takes the most automatic bots away from my site. Otherwise, I will have to
// write something smarter :P
//
var antispam_string = "1337";

// show the string to type
function nospam_sk()
{
	document.getElementById('nospam').innerHTML = '<strong>Sem napíš &quot;'+antispam_string+'&quot;:</strong> <input type="text" name="nospam" size="10" maxlength="10" class="nospam" /> (bez úvodzoviek, nerozlišuje veľké/malé písmená)';	
}

function nospam_en()
{
	document.getElementById('nospam').innerHTML = '<strong>Type here &quot;'+antispam_string+'&quot;:</strong> <input type="text" name="nospam" size="10" maxlength="10" class="nospam" /> (without quotes, case insensitive)';
}
-->
