function createFlashTimeline(elt, timeline_file, profile_id, color, width, height, mode, view_id, view_key, dev, inline){
	if(!height) height = 350;if(!width) width = 425;if(!color) color = '0066ff'; if(!profile_id) profile_id=1;
	view = ''; if(view_id && view_key) view = '&a='+view_id+'&b='+view_key;
    if(dev) dev = '&d='+dev;
	
	var c = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="'+width+'" height="'+height+'"><param name="movie" value="'+timeline_file+'?w='+width+'&h='+height+'&v='+profile_id+'&c='+color+'&m='+mode+view+dev+'" /><param name="salign" value="lt" /><param name="wmode" value="transparent" /><param name="AllowScriptAccess" value="always" /><embed src="'+timeline_file+'?w='+width+'&h='+height+'&v='+profile_id+'&c='+color+'&m='+mode+view+dev+'" salign="lt" wmode="transparent" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash"  AllowScriptAccess="always"></embed></object>';
	if(inline){
		document.write(c);
	}else{
		var o = document.getElementById(elt);	
		o.innerHTML = c;
	}
	
}

function createFlashRazz(elt, file, uid, color, url){
	window['razz_ui_flash'] = {SetReturnValue:function(){}};
	var c = '<object id="razz_ui_flash" width="500" height="180"  classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"><param value="'+file+'" name="movie"/><param  value="v='+uid+'&c='+color+'&u='+url+'" name="flashVars" /><param value="transparent" name="wmode"/><param value="always" name="AllowScriptAccess"/><embed width="500" height="180" allowscriptaccess="always" type="application/x-shockwave-flash" wmode="transparent" flashVars="v='+uid+'&c='+color+'&u='+url+'" src="'+file+'" ></embed></object>';
	if(!isFlashInstalled()){
		c = '<div style="color:white;"><strong>Voice recording requires Adobe Flash Player. Please click <a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&promoid=BIOW" target="_blank">here</a> to download.</strong></div>';
	}
	var o = document.getElementById(elt);
	o.innerHTML = c;

}


