function JS_viewObj(objhtml) { 
    document.write(objhtml); 
} 

<!--- ÇÃ·¡½Ã °´Ã¼ ·Îµù ÇÔ¼ö (ÇÃ·¡½ÃÆÄÀÏ¸í, °¡·ÎÅ©±â, ¼¼·ÎÅ©±â) --->
function obj_swf(filenm, widthSWF, heightSWF) {
 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.write('<PARAM NAME=wmode VALUE=transparent>');
 document.writeln('<param name="movie" value="' + filenm + '">');
 document.writeln('<embed AllowScriptAccess="never" src="' + filenm + '" width="' + widthSWF + '" height="' + heightSWF + '" ></embed>');
 document.writeln('</object>');
}
