var gallery_window="";

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

function gallery_popup(name, x, y) {
	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, 'gallery_popup', opts);
	gallery_window.focus();
}
function gallery_popup2(count, id, x, y) {
	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_general.php?count=' + count + '&id=' + id, 'gallery_popup', opts);
	gallery_window.focus();
}

function recommend_popup(lang) {
	var opts, top, left, x, y;
	x = 480;
	y = 420;
	top = window.height;
	if (!(top > 0)) {
		top = window.innerHeight;
	}
	left = window.height;
	if (!(left > 0)) {
		left = window.innerWidth;
	}
	top = (top - y) / 2;
	left = (left - x) / 2;
	opts = 'left=' + left + ', top=' + top + ', width=' + x + ', height=' + y + ', fullscreen=0, locationbar=0, menubar=0, personalbar=0, scrollbars=1, statusbar=0, toolbar=0';
	window.open('/recommend.php?lang=' + lang, 'recommend', opts);
}

function show_popup(lang, n, w, h) {
	var opts = 'left=40, top=10, width=' + w + ', height=' + h + ', fullscreen=0, locationbar=0, menubar=0, personalbar=0, scrollbars=0, statusbar=0, toolbar=0'
	window.open('http://uw.iq.pl/popup.php?lang=' + lang + ',n=' + n, 'popup', opts)
}

function show_popunder(lang, n, w, h) {
	var opts = 'left=40, top=10, width=' + w + ', height=' + h + ', fullscreen=0, locationbar=0, menubar=0, personalbar=0, scrollbars=0, statusbar=0, toolbar=0'
	popunder_window = window.open('http://uw.iq.pl/popup.php?lang=' + lang + ',n=' + n, 'popup', opts)
	popunder_window.blur()
	window.focus()
}

