var ie = navigator.appName.indexOf('Microsoft') != -1;

function showOffer() {
	var hiddenCart = document.getElementById('hiddenCart_o');
	var basketPanel = document.getElementById('l_o');
	var fromLeft = 0;
	
	if (ie)
		fromLeft = document.getElementById('content').offsetLeft + basketPanel.offsetLeft + 2;
	else
		fromLeft = basketPanel.offsetLeft;
		
	if (hiddenCart.style.display == 'none') {
		hiddenCart.style.left = fromLeft + 'px';
		hiddenCart.style.display = 'inline';
	} else
		hiddenCart.style.display = 'none';
	window.focus();
}

function newWin(nazwa,szer,wys) {
	odlewa=(screen.width-szer)/2;
	odgory=(screen.height-wys)/2;
	szer = szer+28;
	wys = wys+28;
	config='left='+odlewa+',top='+odgory+',width='+szer+',height='+wys+',innerheight='+wys+',innerwidth='+szer+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no';
	cel=window.open('','okno',config)
	cel.document.write('<HTML><HEAD>');
	cel.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">');
	cel.document.write('<TITLE>MAXBUD</title>');
	cel.document.write('</HEAD>');
	cel.document.write('<body  leftmargin=10 topmargin=14 marginheight=10 marginwidth=10  style="text-align:center;">');
	cel.document.write('<a href=# onclick="javascript:self.close();"><img src='+nazwa+' class=obw alt="Kliknij aby zamknac okno" style="border: 1px solid #000;" align=center></a>');
	cel.document.write('</body></html>');
	cel.focus();
}
