function putSWF(name, width, height, vars) {
	document.write("<object type='application/x-shockwave-flash' data='" + name + "' width='" + width + "' height='" + height + "'>\n");
	document.write("<param name='movie' value='" + name +"' />\n");
	if (vars != "") {
	   document.write("<param name='FlashVars' value='" + vars +"' />\n");
	}
	document.write("<img src='noflash.gif' width='200' height='100' alt='' />\n");
	document.write("</object>\n");
}


