function printer_popup(url) {
	var opts = 'left=40, top=10, width=720, height=550, fullscreen=0, locationbar=0, menubar=0, personalbar=0, statusbar=0, toolbar=0';
	window.open(url, 'printer', opts);
}

var gallery_window="";

function gallery_popup(name, x, y, lang) {
	opts="toolbar=no,directories=no,menubar=no,resizable=no,scrollbars=no,width=" +x+ ",height=" +y+ ",left=60,top=30";
	if (gallery_window != "" || gallery_window.closed == false) {
		gallery_window.close();
	}
	gallery_window = window.open('gallery_fullsize.php?i=' + name + '&lang=' + lang, 'gallery_popup', opts);
	gallery_window.focus();
}

var image_window="";

function image_popup(name, width, height) {
	var left = 0, top = 0;
	if (screen.width > width) {
		left = (screen.width - width) / 2;
	}
	if (screen.height > height) {
		top = (screen.height - height) / 2;
	}
	var opts = 'left=' + left + ', top=' + top + ', width=' + width + ', height=' + height + ', fullscreen=0, locationbar=0, menubar=0, personalbar=0, scrollbars=0, statusbar=0, toolbar=0';
	if (image_window != "" || image_window.closed == false) {
		image_window.close();
	}
	image_window = window.open('image_fullsize.php?i=' + name, 'image_popup', opts);
	image_window.focus();
}

function flash_popup() {
	var opts = 'left=40, top=10, width=740, height=560, fullscreen=0, locationbar=0, menubar=0, personalbar=0, statusbar=0, toolbar=0';
	window.open('http://remontowa.iq.pl/flash/main.html', 'flash', opts);
}

