function createTimeline( swfURL, divId, swfObjectName, width, height, flashPlayerVersion, expressInstallURL, flashvars) 
{
	if( swfURL == null || 
		divId == null || 
		swfObjectName == null ||
		width == null ||
		height == null || 
		flashPlayerVersion == null ||
		expressInstallURL == null )
	{
		alert("create the timeline failed!");
		return;
	}
	
	var params = {
		play : "false",	//true(default),false
		loop : "false", //true(default),false
		scale : "showall", //showall(default) , noorder, exactfit
		quality : "Autohigh", //Low,Autolow,Autohigh,Medium,High(default),Best
		allowscriptaccess : "samedomain", //always , never , samedomain(default)
		menu : "false", //true(default),false
		bgcolor : "#000000",
		base : ".",
		wmode : "Transparent" //Window(default), Opaque, Transparent, Opaque windowless, Transparent windowless
	};
	
	var attributes = {
		id: swfObjectName,
		name: swfObjectName,
		swliveconnect:"false", //true, false(default)
		xiRedirectUrl: "http://starpl.com",	
		base : "."
	};	
	
	swfobject.embedSWF( swfURL, divId, width, height, flashPlayerVersion, expressInstallURL, flashvars, params, attributes);
}