// JavaScript Document
function ShowMovie(mlocation, mwidth, mheight) 
{ 

	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' +  mwidth + '" height="' +  mheight + '">');
  	document.write('<param name="wmode" value="transparent"><param name="movie" value="' +  mlocation + '"/>'); 
  document.write('<param name="quality" value="high"/>'); 
   document.write('<embed  wmode="transparent" src="' +  mlocation + '" quality="high"  pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" scale="Showall" width="' +  mwidth + '" height="' +  mheight + '"></embed>\n'); 
document.write('</object>\n'); 





} 

function RandomiseFlash()
{
	
	FlashArray = new Array ( 
"/templates/greenlight/flash/clouds.swf", 
"/templates/greenlight/flash/traffic.swf"); 
RandomIndex = Math.floor(FlashArray.length * Math.random()); 

ShowMovie(FlashArray[RandomIndex], "251", "250");
	
}