function inject_360 ( id, path, expressinstall_path, args ) {

	if(typeof args['width'] == "undefined") args['width'] = "400";
	if(typeof args['height'] == "undefined") args['height'] = "400";
	if(typeof args['iecachefix'] == "undefined")  args['iecachefix'] = "no";	
	if(typeof args['ovskin'] == "undefined")  args['ovskin'] = "no";

	if( args['iecachefix'] == "yes" )
	{
	  var un = Math.round(Math.random()*10000);
	  path += "?un="+un;
	}
	var params = {menu: "false", quality: "high", allowfullscreen: "true", align: "middle"};

	if(typeof args['base'] != "undefined")  params['base'] = args['base'];

	var attributes = {id: id};
	swfobject.embedSWF(path, id, args['width'], args['height'], "10.0.0", expressinstall_path, args, params, attributes ); 
}


