function flashWrite2(url,w,h,id,bg,altimg){

	var flashStr=
"<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+w+"' height='"+h+"' id='"+id+"'>"+
"<param name='movie' value='"+url+"' />"+
"<param name='bgcolor' value='"+bg+"' />"+
"<param name='allowScriptAccess' value='always' />"+
"<object type='application/x-shockwave-flash' data='"+url+"' width='"+w+"' height='"+h+"'>"+
"<div><img src='"+altimg+"' border='0' width='"+w+"' height='"+h+"' /></div>"+
"</object>"+
"</object>";

	document.write(flashStr);
}
