
var flashwidth		= "100%"	// WIDTH OF THE FLASH (IN PIXELS or PERCENT)

var flashheight		= "125"		// HEIGHT OF THE FLASH (IN PIXELS)

var color		= "FFFFFF"	// IMAGE SLIDER BACKGROUND COLOR

var min_num = 1;  

var max_num = 23;  

var diff = max_num-min_num+1 ;  

var rnd_number=1; 

var pictfile= new Array(23); 

pictfile[1]="mount.swf";
pictfile[2]="clouds.swf";
pictfile[3]="white-flow.swf";//"land.swf";
pictfile[4]="sunset.swf";
pictfile[5]="fields.swf";
pictfile[6]="flowers.swf";//:sea-mount.swf";
pictfile[7]="flowers.swf";
pictfile[8]="boat.swf";
pictfile[9]="night-light.swf";
pictfile[10]="palmera.swf";
pictfile[11]="red-flowers.swf";
pictfile[12]="plains.swf";
pictfile[13]="sea-clouds.swf";
pictfile[14]="office.swf";
pictfile[15]="clo-mou-lake.swf";
pictfile[16]="flowers.swf";
pictfile[17]="red-flowers.swf";
pictfile[18]="red-green-org.swf";
pictfile[19]="sea-rock.swf";
pictfile[20]="yellow-flow.swf";
pictfile[21]="white-flow.swf";
pictfile[22]="sun-flow.swf";
pictfile[23]="new-york.swf";


rnd_number=Math.floor(Math.random()*diff + min_num);  

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="'+flashwidth+'"><tr><td valign="middle" align="center">');

document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" id="slider">');

document.write('<param name="wmode" value="transparent">');

document.write('<PARAM NAME="movie" VALUE="'+pictfile[rnd_number]+'">');

document.write('<PARAM NAME="quality" VALUE="high">');

document.write('<PARAM NAME="bgcolor" VALUE="#'+color+'">');

document.write('<EMBED src="'+pictfile[rnd_number]+'" wmode="transparent" quality="high" bgcolor="#'+color+'"  WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" NAME="slider" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT><br>');

document.write('</td></tr></table>');


