﻿function makeFlash(src, id, width, height ) {
 var flashData =
	"<object style='width:" + width + "px; height:" + height + "px;' id='" + id + "' type='application/x-shockwave-flash' data='" + src + "' wmode='transparent'>\n" +
	"<param name='movie' value='" + src + "' />\n" +
	"<param name='wmode' value='transparent' />\n" +
	"</object>\n"
 ;
 document.write( flashData );
 return true;
}