/**
 * @(#) $RCSfile$ $Revision$ $Date$
 *
 * Copyright 2003 Orgdot AS. All Rights Reserved.
 * http://dev.swfit.com
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

/**
 * Individual browser configuration of Flash movies.
 *
 * @author      Olaf Havnes
 * @version     $Revision$ $Date$
 * @since       SWFIT2.0
 */




var url_params = new Array ();
var u = 0;




// ------------------------------------------------
// configure external parameters
// ------------------------------------------------


source_file = "/pub/Photo/newsbrief_out.txt";
url_params[u++] = "source_file";


stack_width = "80";
url_params[u++] = "stack_width";


stack_height = "80";
url_params[u++] = "stack_height";


image_scheme = "spread";
url_params[u++] = "image_scheme";


seed = "2";
url_params[u++] = "seed";



// ------------------------------------------------
// configure the movie
// ------------------------------------------------

var swf_src = '/Gallery/Gallery.swf';
var swf_width = 650;
var swf_height = 550;
var swf_col = '#ffffff';




// ------------------------------------------------
// generate the html code
// ------------------------------------------------

swf_src += '?';
for (i = 0; i < url_params.length; i++) swf_src += urlEncVarMX (url_params[i]);
document.writeln ( flash7Code (swf_src, swf_width, swf_height, swf_col) );

