function ieFlash(url, width, height, bgcolor){	document.write("<object type=\"application/x-shockwave-flash\"");	document.write("data=\"" + url + "\" ");	document.write("width=\"" + width + "\" height=\"" + height + "\">");	document.write("<param name=\"movie\" ");	document.write("value=\"" + url + "\" />");	if ( bgcolor == "" ) {
		document.write("<param name=\"wmode\" value=\"transparent\">");
	} else {
		document.write("<param name=\"bgcolor\" value=\"" + bgcolor + "\" />");	}
	document.write("</object>");}