/* 플래시 */ function swf(Url,Width,Height){ document.writeln(""); document.writeln(""); document.writeln(""); document.writeln(""); document.writeln(""); document.writeln(""); } function PrintEmbed(EmbID) { document.write(document.getElementById(EmbID).value); } // 이미지 링크 없애기 function autoBlur(){ if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); } document.onfocusin=autoBlur; // png 이미지 IE6.0 불투명처리 function setPng24(obj) { var request_os = window.navigator.userAgent; var os_array = request_os.split(";"); if(os_array[1] != " MSIE 7.0") { obj.width=obj.height=1; obj.className=obj.className.replace(/png24/i,''); obj.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+ obj.src +"',sizingMethod='image');"; obj.src=''; } return ''; }