function show_banner() {
document.write("<div id=\"banner\" style=\"display: block; background: transparent; position: absolute; top: 100px; left: 200px; \">");
document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"400\" height=\"400\" >");
document.write("<param name=\"movie\" value=\"" + expand_path + "\">");
document.write("<param name=\"quality\" value=\"high\">");
document.write("<param name=\"wmode\" value=\"transparent\">");
document.write("<embed src=\"" + expand_path + "\" quality=\"high\" wmode=\"transparent\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"400\" height=\"400\"></embed>");
document.write("</object>");
document.write("</div>");
}

function hideme() {
  if (document.getElementById){
  		target = document.getElementById("banner");
		target.style.display = "none";
  	}
}
