
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('/top1.swf','762','146')
KW_movieList[KW_movieList.length] = new KW_movie('/top2.swf','762','146')
KW_movieList[KW_movieList.length] = new KW_movie('/top3.swf','762','146')
KW_movieList[KW_movieList.length] = new KW_movie('/top4.swf','762','146')
KW_movieList[KW_movieList.length] = new KW_movie('/top5.swf','762','146')
KW_movieList[KW_movieList.length] = new KW_movie('/top6.swf','762','146')

	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="BASE" value=".">  <param name="BGCOLOR" value="">  <embed src="'+KW_movieList[j].name+'" base="."  quality=high 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>');
