function open_kupon(){
	nw = window.open('k.php', 'Edit', 'height=850,width=700,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes');
	nw.opener=self;
}

function akcio(){
	nw = window.open('akcio.html', 'Edit', 'height=1000,width=800,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes');
	nw.opener=self;
}

$(document).ready(function() {
	// do stuff when DOM is ready
	$("#lightbox, #lightbox-panel").fadeIn(300);

	$("a#close-panel").click(function(a) {
		$("#lightbox, #lightbox-panel").fadeOut(300);
	});

});

