// JavaScript Document
function flash_show(nazwa,x,y,target) {
	var flashvars = {};
	var params = { scale:"noscale", bgcolor:"#454443" };
	var attributes = { siteSize:x };
	swfobject.embedSWF(nazwa, target, x, y, "10.0.0", false, flashvars, params, attributes);	
}
function flash_imgShow(b,s,xml,target) {
	if(siteWidth == 1200) {
		x = b.x;
		y = b.y;
	} else {		
		x = s.x;
		y = s.y;
	}
	var flashvars = { xmlPlik:"images/"+x+"/"+xml };
	var params = { scale:"noscale", bgcolor:"#454443" };
	var attributes = {};
	swfobject.embedSWF("images/" + siteWidth + "/imgShow.swf", target, x, y, "10.0.0", false, flashvars, params, attributes);	
}
function flash_showLogo() {
	if(siteWidth == 1200) {
		x = 560;
		y = 90;
	} else {		
		x = 422;
		y = 68;	
	}
	flash_show("images/" + siteWidth + "/logo.swf", x, y,"logoContent");
}
function flash_showSWF(nazwa, b, s, target, attributes) {
	if(siteWidth == 1200) {
		x = b.x;
		y = b.y;
	} else {		
		x = s.x;
		y = s.y;
	}
	flash_show("images/" + siteWidth + "/" + nazwa, x, y, target);
}
function img_showPIC(nazwa, b, s) {
	if(siteWidth == 1200) {
		x = b.x;
		y = b.y;
	} else {		
		x = s.x;
		y = s.y;
	}
	document.write('<img src="images/' + siteWidth + '/' + nazwa + '" width="' + x + '" height="' + y + '" border="0" />');	
}
