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

