function popup(url,name,width,height) {
	var sWidth = screen.availWidth;
  	var sHeight = screen.availHeight;
	newwindow=window.open(
		url,
		name,
		'height='+height+',width='+width+',	left='+((sWidth-width)/2)+',top=0,scrollbars=yes,resizable=yes,menubar=1,toolbar=1'
	);
	
	if (window.focus) {newwindow.focus()}
	return false;
}

$(function(){
	$("a.rozwin").click(function(){
		$(this).parent().find("div:first").slideDown("normal");
		$(this).hide();
		$(this).parent().find("a.zwin:first").show();
	});
	$("a.zwin").click(function(){
		$(this).parent().find("div:first").slideUp("normal");
		$(this).hide();
		$(this).parent().find("a.rozwin:first").show();
	});
});
