/*
 * Generates object/embed HTML dynamically to
 * workaround IE's "Click to activate and use this control"
 * 'features'
 */
function showClip(id, url, width, height, target) {

	if(target){
		url = url + "?target=" + target;
	}

	document.write('<object type="application/x-shockwave-flash" data="'+url+'" title="'+id+'" id="'+id+'" height="'+height+'" width="'+width+'">');
		document.write('<param name="movie" value="'+url+'" />');
		document.write('<param name="quality" value="autohigh" />');
		document.write('<param name="wmode" value="transparent" />');
//		if(target){
//			document.write('<param name="FlashVars" value="target='+target+'" />');
//		}
	document.write('</object>');
}

