function selectcontent ( id )
	{
		var field  = document.getElementById(id);
		field.select();
	}
	
function validate_blogertesito ( )
	{
		var nev  = document.getElementById('blog_ert_keresztnev');
 	    var email  = document.getElementById('blog_ert_email');

		if (nev.value=='')
			{
			alert('Nem adta meg a keresztnevét!');
			return false;
			};

		if (email.value=='')
			{
			alert('Nem adta meg az e-mail címét!');
			return false;
			};
	}

function valaszcomment ( url, id )
	{
		var comment  = document.getElementById('comment_body');

		comment.value = '#' + id + ': ';
		
		window.location= "blog/" + url + "#comment_form";
	}
