function tmh__make_ad_fodder(src, width, height)
{
src = src.replace( , );
var temp_image = '';
var temp_flash = ' + ' codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0 '
+ ' height=$height$ width=$width$> '
+ ' '
+ ' '
+ ' '
+ ' + ' wmode=opaque type=application/x-shockwave-flash '
+ ' pluginspage=http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash> '
+ '';
return (/\.swf$/gi.test(src) == true ? temp_flash : temp_image)
.replace(/\$src\$/gi, src)
.replace(/\$width\$/gi, width)
.replace(/\$height\$/gi, height)
}
