function _c(id){
    $.ajax({
      type: "GET",
      url: "content.php",
      data: "id=" + id,
      success: function(msg) {
	    /*
        $('#boxcontent').html(msg);
        $('#dialog').jqmShow();
		*/

        $('#flashcontent').hide();

        $('#boxcontent').html(msg + '<br/><a href="javascript:;" onclick="_close()">vissza</a>');
        $('#boxcontent').show();

      }
    });
}

function _close(){
	$('#boxcontent').hide();
	$('#boxcontent').html("");
	$('#flashcontent').show();
}

