function adBannerOnOff(obj_id, on_off, db_id) {
	var obj = document.getElementById(obj_id);
	if (on_off == "off") obj.style.display = "none";
	else if (on_off == "on") {
		obj.style.display = "";
		adBannerAddAppearances(db_id);
	}
}

function adBannerAddAppearances(id) {
	var xmlhttp = false;
	if (window.ActiveXObject) xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	else if (window.XMLHttpRequest) xmlhttp = new XMLHttpRequest();
	xmlhttp.open('GET', 'ad_manager.php?action=add_appearances&id=' + id, true);
	xmlhttp.onreadystatechange = function() {
		/*if (xmlhttp.readyState == 1) // Loading
			document.getElementById('main_container').innerHTML = '<div class="loader"></div>';
		else if (xmlhttp.readyState == 4 && xmlhttp.status == 200) // Loaded
		{
			var content = xmlhttp.responseText;
			document.getElementById('main_container').innerHTML = content;
		}*/
	}
	xmlhttp.send(null);
	return;
}

function flash_print_xml(filepath, width, height, xml_name) {
	document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" border="0" width="' + width + '" height="' + height + '">');
	document.writeln('<param name="allowScriptAccess" value="sameDomain" />');
	document.writeln('<param name="movie" value="' + filepath + '" />');
	document.writeln('<param name="quality" value="High" />');
	document.writeln('<param name="wmode" value="transparent" />');
	document.writeln('<param name="FlashVars" value="xml_name=' + xml_name + '" />');
	document.writeln('<embed src="' + filepath + '" style="display: block;" FlashVars="xml_name=' + xml_name + '" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj3" quality="High" width="' + width + '" height="' + height + '" />');
	document.writeln('</object>');
}

function flash_print(filepath, width, height) {
	document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://www.adobe.com/support/flashplayer/downloads.html" border="0" width="' + width + '" height="' + height + '">');
	document.writeln('<param name="allowScriptAccess" value="sameDomain" />');
	document.writeln('<param name="movie" value="' + filepath + '" />');
	document.writeln('<param name="quality" value="High" />');
	document.writeln('<param name="wmode" value="transparent" />');
	document.writeln('<embed src="' + filepath + '" style="display: block;" wmode="transparent" pluginspage="https://www.adobe.com/support/flashplayer/downloads.html" type="application/x-shockwave-flash" name="obj3" quality="High" width="' + width + '" height="' + height + '" />');
	document.writeln('</object>');
}

