// JavaScript Document
function writeFlashCode(){
var swf= new Array('c0','d0','e0','f0','g0','a0','b0','c1','d1', 'e1', 'f1', 'g1', 'a1', 'b1', 'cs0', 'ds0', 'fs0', 'gs0', 'as0', 'cs1', 'ds1', 'fs1', 'gs1', 'as1', 'alarmSound'); 
var items= swf.length;
for (i=0;i<items;i++)
{
	document.write ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write ('</br>');
	document.write ('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="10" height="10" id="'+swf[i]+'" align="">');
	document.write ('</br>');
	document.write (' <param name=movie value="'+swf[i]+'.swf">');
	document.write ('</br>');
	document.write ('<param name=quality value=high>');
	document.write ('</br>');
	document.write('<param name=bgcolor value=#FFFFFF>') 
	document.write ('</br>');
	document.write('<embed src="'+swf[i]+'.swf" swliveconnect="true" quality=high bgcolor=#FFFFFF  width="10" height="10" name="'+swf[i]+'" align=""');
	document.write ('</br>');
	document.write('type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer"></embed></object>');
	document.write ('</br>');
	document.write ('</br>');
	
}
}
