var theFlash = new Array() // do not change this
theFlash[0] = 'images/flash/comodomeet.swf'
//theFlash[1] = 'images/flash/ivault.swf'
//theFlash[2] = 'images/flash/ipod.swf'
theFlash[1] = 'images/flash/newad2.swf'
//theFlash[2] = 'images/flash/cdf-flash3.swf'
theFlash[2] = 'images/flash/comodo-cpf.swf'
var p = theFlash.length;
var aNumber = Math.round(Math.random()*(p-1));

function writeFlash(){
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="555" height="210">\n');
 document.write(' <param name="movie"  value="');
 document.write(theFlash[aNumber]);
 document.write('">\n');
 document.write(' <param name="quality" value="high">\n');
   document.write(' <param name="wmode" value="transparent">\n');
 document.write(' <embed quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="555" height="210"  wmode="transparent" src="');
 document.write(theFlash[aNumber]);
document.write('"></embed>\n');
document.write('</object>\n');

}
