function flashHeader(a_name, a_width, a_height)
{
	var l_base = window.location.protocol + "//" + window.location.hostname + ":" + window.location.port; 
	var l_download_base = "http";
	if (location.href.toLowerCase().indexOf("https") == 0)
	{
		l_download_base = "https";
	}
	//alert(l_base);
	document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"" + l_download_base + "://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"" + a_width + "\" height=\"" + a_height + "\">\n" +
		"<param name=\"movie\" value=\"" + l_base + "/flashes/" + a_name + "\" />\n" +
		"<param name=\"quality\" value=\"high\" />\n" +
		"<embed src=\"" + l_base + "/flashes/" + a_name + "\" quality=\"high\" pluginspage=\"" + l_download_base + "://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + a_width + "\" height=\"" + a_height + "\"></embed>\n" +
		"</object>\n");
}
