function loadSizes(article_id,btn)
{
	$(btn).replaceWith("<div>Wybierz rozmiar poniżej.</div>");
	//btn.style.visibility="hidden";
	$('#sizes_'+article_id+' > div').css('display', 'block');
	$('#sizes_'+article_id).load("ajax.php", { 'article_id': article_id, 'fun':'load_sizes' } );
}

function popup(url)
{
	var w=450;
	var h=230
	var winleft = (screen.width - w) / 2;
	var winUp = (screen.height - h) / 2;
	var win=window.open(url,"_blank","menubar=no,scrollbars=yes,location=no,resizeable=no,status=no,toolbar=no,width="+w+",height="+h+",left="+winleft+",top="+winUp);
}

function showSystems(id)
{
	popup("index.php?page_id=32#"+id);
}

function largePhotoSWF(src,w,h)
{
	var winleft = (screen.width - w) / 2;
	var winUp = (screen.height - h) / 2;
	
	var win=window.open("","_blank","menubar=no,scrollbar=no,location=no,resizeable=no,status=no,toolbar=no,width="+(w+60)+",height="+h+",left="+winleft+",top="+winUp);
	    
	win.document.write('<html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-2" /><TITLE>Zdjęcie</TITLE></head>');
	win.document.write('<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">');
	win.document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="1000" height="1000" id="popup" align="middle">');
	win.document.write('<param name="allowScriptAccess" value="sameDomain" />');
	win.document.write('<param name="movie" value="photos_preview.swf" />');
	win.document.write('<param name="quality" value="high" />');
	win.document.write('<param name="bgcolor" value="#ffffff" />');
	win.document.write('<PARAM name="flashvars" value="nrlini=1&clr=0xcccccc&tx=www.butysportowe.net&ov='+src+'">');
	win.document.write('<embed src="photos_preview.swf?nrlini=1&clr=0xcccccc&tx=www.butysportowe.net&ov='+src+'" quality="high" bgcolor="#ffffff" width="1000" height="1000" name="popup" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	win.document.write('</object>');          
	win.document.write('</body></html>');
}

function largePhotoNew(id,w,h)
{
	var winleft = (screen.width - w) / 2;
	var winUp = (screen.height - h) / 2;
	
	var win=window.open("","_blank","menubar=no,scrollbar=no,location=no,resizeable=no,status=no,toolbar=no,width="+(w+160)+",height="+(h+40)+",left="+winleft+",top="+winUp);
	    
	win.document.write('<html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-2" /><TITLE>Zdjęcie</TITLE></head>');
	win.document.write('<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">');
	win.document.write('<iframe src="http://www.citysport.com.pl/index.php?page_id=104&productId='+id+'" width="'+(w+160)+'" height="'+(h+40)+'"></iframe>');
	win.document.write('</body></html>');
}

function sendOrder()
{
	document.formatka.basketFun.value="send";
	document.formatka.submit();
}

function resizeColumns()
{
	var w=$("body").innerWidth();

	if(w>1600)
	{
		$("#columns").css('width','1600px');
		$("#logos img").css('margin-left','25px').css('margin-right','15px');
	}else if(w>=1259)
	{
		$("#columns").css('width','1259px');
		$("#logos img").css('margin-left','10px').css('margin-right','65px');
	}else if(w>970)
	{
		$("#columns").css('width','970px');
		$("#logos img").css('margin-left','24px').css('margin-right','24px');
	}
}