// JavaScript Document

FlashFiles = new Array("https://www.hometheaterstore.com/includes/home.swf","https://www.hometheaterstore.com/includes/case_history.swf","https://www.hometheaterstore.com/includes/locations.swf","https://www.hometheaterstore.com/includes/install.swf","https://www.hometheaterstore.com/includes/history_philosophy.swf","https://www.hometheaterstore.com/includes/theaterroom.swf")
//FlashFiles = new Array("/includes/july4th.swf","/includes/home_2.swf")

imgCt = FlashFiles.length

function chooseFlash(){
if (document.images){
randomNum = Math.floor((Math.random() * imgCt))
document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" name="myFlashFile" width="750" height="263" id="myFlashFile">')
document.writeln('<param name="movie" value="' + FlashFiles[randomNum] + '">')
document.writeln('<param name="quality" value="high">')
document.writeln('<embed src="' + FlashFiles[randomNum] + '" width="750" height="263" align="middle" quality="high" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="myFlashFile"></embed>')
document.writeln('</object>')
}
}
