// JavaScript Document

function runFlash(filename, swfW, swfH, ID) {
	document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"  width="'+swfW+'"  height="'+swfH+'" id="'+ID+'" align="middle" VIEWASTEXT>');
	document.writeln('<param name=movie value='+filename+'>')
	document.writeln('<embed src="'+filename+'" width="'+swfW+'" height="'+swfH+'" name="'+ID+'" align="middle" allowScriptAccess="sameDomain"  />')	
	document.write('</object>\n');	
}
