function ForumTopicRename(id) {
	window.open('admin_forum_topic_rename.php?id='+id,'','resizable=no,scrollbars=yes,width=400,height=140');
};

function ForumPostEdit(id) {
	window.open('admin_forum_post_edit.php?id='+id,'','resizable=no,scrollbars=yes,width=660,height=270');
};

function playSound(szam) {
	$('#dummy').html('<embed name="music" src="vote/'+szam+'.mp3" autostart="true" loop="false" enablejavascript="true" id="music" height="16" style="visibility: hidden">');
};

function Vote(form) {
	params = form.serialize();
	if (params == '') {
		alert('Szavazáshoz meg kell jelölnöd egy választ.');
		return false;
	};
	$('#voteResult').html('<img src="style/load.gif" alt="betöltés...">');
	$('#voteResult').show();
	$.ajax('vote.php', {
		type: "POST",
		cache: false,
		data: params,
		dataType: "text",
		success: function(data) {
			$('#voteResult').html(data);
		},
	    error: function() {
	    	$('#voteResult').html('Kapcsolati hiba. Próbáld újra!');
		}
	});
	return false;
};
