function activeflash(filenm, widthSWF, heightSWF) {
//alert(filenm);
 document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"     codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,22,0" width="' + widthSWF + '" height="' + heightSWF + '" align=middle name=img_1 VIEWASTEXT id=OBJECT1>');
 //document.writeln('<param name="AllowScriptAccess" value="never"> ');
 document.writeln('<param name="quality" value="high">');
 document.writeln('<param name="bgcolor" value="#ffffff">');
 document.writeln('<param name="movie" value="' + filenm + '">');
 document.writeln('<embed  src="' + filenm + '" width="' + widthSWF + '" height="' + heightSWF + '" ></embed>');
 document.writeln('</object>');
}