function loadBanner(name, w, h, banner_id) {
	var flash_div = document.getElementById(banner_id);
	flash_div.innerHTML = AC_FL_RunDinamicContent(
		'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
		'width', w,
		'height', h,
		'src', name,
		'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
		'id', 'standart_banner_flash',
		'bgcolor', '#000000',
		'name', 'stand_banner',
		'menu', 'true',
		'scale', 'noscale',
		'salign', 't',
		'wmode', 'transparent',
		'allowScriptAccess','always',
		'movie', name
	);
}

function removeBanner2(banner_id) {
	var clear_div = document.getElementById(banner_id);
	clear_div.innerHTML = "";
	clear_div.style.height = "250px";
	clear_div.style.width = "300px";
}

function floatingAction(container_width, container_height, container_left, container_top, inner_margin_left, inner_margin_top) {
	var element_container = document.getElementById("universal_container");
	var element_inner = document.getElementById("universal_content");
	element_container.style.width = container_width;
	element_container.style.height = container_height;
	element_container.style.left = container_left;
	element_container.style.top = container_top;
	element_inner.style.marginLeft = inner_margin_left;
	element_inner.style.marginTop = inner_margin_top;
}
