function setFlashWidth(id, w)
{
	document.getElementById(id).style.width = w + "px";
}
function setFlashHeight(id, h)
{
	document.getElementById(id).style.height = h + "px";		
}
function setFlashSize(id, w, h)
{
	setFlashWidth(id, w);
	setFlashHeight(id, h);
}
function setPopup(url)
{
	win = window.open('', "Debica", "locationbar=0,menubar=0,personalbar=0,scrollbars=0,status=0,toolbar=0");
	win.document.write('<div style="position: absolute; width: 100%; height: 100%; z-index: 1; left:0px; top:0px"><table cellpadding="0" cellspacing="0" width="100%" height="100%"><tr><td align="center"><img title="Zamknij okno" onclick="window.close();" onload="window.resizeTo(this.width+10,this.height+30); window.moveTo(screen.width/2 - this.width/2, screen.height/2 - this.height/2);" src="'+url+'"><\/td><\/tr><\/table><\/div>');
};