//
//	Flash Insert V 1.0
//	
//	You may use this code in your own projects as long as you
//	leave this copyright-text in place. All code is provided AS-IS.
//	This code is distributed and will be useful by embedding flash-movies,
// 	but WITHOUT ANY WARRANTY; without even the implied warranty of
// 	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
//	Please visit http://www.agentur-etcetera.de
//
//	Copyright 2006 Daniel Vogt / agentur etcetera.
//

function flashInsert(targetId, data, width, height){
	var returningCode = '<object width="'+width+'" height="'+height+'" data="'+data+'" type="application/x-shockwave-flash" style="display:block; width:'+width+'px; height:'+height+'px; margin:0px; padding:0px;"><param name="movie" value="'+data+'" /><param name="quality" value="high" /><param name="wmode" value="transparent" /></object>';
	//document.getElementById(targetId).style.height = height+'px';
	document.getElementById(targetId).innerHTML = returningCode;
}
// Thats all for now ^^/