// Random Flash Movie - by Paul Davis
// Copyright 2002, all rights reserved
// visit http://www.kaosweaver.com/ for Dreamweaver extensions.

function KW_movie(name,width,height){
	this.name=name; this.width=width; this.height=height;
}
var KW_movieList = new Array();
KW_movieList[KW_movieList.length] = new KW_movie('clients_1.swf','125','99')
KW_movieList[KW_movieList.length] = new KW_movie('clients_2.swf','125','99')
KW_movieList[KW_movieList.length] = new KW_movie('clients_3.swf','125','99')
KW_movieList[KW_movieList.length] = new KW_movie('clients_4.swf','125','99')

	j=parseInt(Math.random()*KW_movieList.length)
	j=isNaN(j)?0:j;
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0" width="'+KW_movieList[j].width+'" height="'+KW_movieList[j].height+'">  <param name=movie value="'+KW_movieList[j].name+'">  <param name=quality value=high><PARAM NAME="LOOP" VALUE="true">  <param name="BASE" value=".">  <param name="BGCOLOR" value="">  <embed src="'+KW_movieList[j].name+'" base="."  quality=high LOOP=true  pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="'+KW_movieList[j].width+'" height="'+KW_movieList[j].height+'" bgcolor="">  </embed> </object>');

// Random Flash Movie End
