<!-- 블럭 없애 주기-->
 function raon(flsName,flsWidth,flsHeigt)
{
	var wirtTxt = " <object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width="+flsWidth+" height="+flsHeigt+" id=\"sub_menu_2\" align=\"middle\">"

				+ " <param name=\"movie\" value="+flsName+" /> "
				+ " <param name=\"quality\" value=\"high\" />"
				+ " <PARAM NAME=\"wmode\" VALUE=\"transparent\">"
				+ " <embed src="+flsName+" quality=\"high\" bgcolor=\"#ffffff\" width="+flsWidth+" height="+flsHeigt+" name=\"sub_menu_2\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />"
				+ " </object>"
	document.write(wirtTxt);
}

<!-- png투명하게 뚫기 -->
function setPng24(obj){
obj.width=obj.height="1";
obj.className=obj.className.replace(/\bpng24\b/i,"");
obj.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+obj.src+"',sizingMethod='image');"
obj.src="";
return"";
}
<!-- 블럭 없애 주기 완료 -->
//플래쉬 점선제거
/*
function raon(url,width,height){
 document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' ");
 document.write("  codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' ");
 document.write("  width='"+width+"' height='"+height+"' align='middle'>");
 document.write(" <param name='allowScriptAccess' value='always' /> ");
 document.write(" <param name='movie'    value='"+url+"' /> ");
 document.write(" <param name='quality'   value='high' /> ");
 document.write(" <param name='wmode'    value='transparent'> ");
 document.write(" <embed src='"+url+"' quality='high' width='"+width+"' height='"+height+"' align='middle' ");
 document.write("  allowScriptAccess='sameDomain' type='application/x-shockwave-flash' ");
 document.write("  pluginspage='http://www.macromedia.com/go/getflashplayer' />");
 document.write("</object>");
}
*/
//아이프레임 자동 리사이징
function reSize() {
    try {
        var objBody = auto_iframe.document.body;
        var objFrame = document.all["auto_iframe"];
        ifrmHeight = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight);
        objFrame.style.height = ifrmHeight;
    }
        catch(e) {}
}
function init_iframe() {
    reSize();
    setTimeout('init_iframe()',1)
}

init_iframe();


//해당도에 맞게 전체창 띄우기(풀스크린 아님)
//self.moveTo(0,0)
//self.resizeTo(screen.availWidth,screen.availHeight) 
////////////////////////////////////////////////////////////////////////////////////


//마우스 오른쪽버튼 방지
//window.onload=function() {
//        window.document.oncontextmenu=function() { alert("이미지 무단 도용시 법적제재를 받습니다");return false; }
//    }


//기능키 방지
//function click() { 
//     if((event.ctrlKey) || (event.shiftKey) ||(event.altKey)) { 
//       alert('키를 사용할 수 없습니다.'); 
//     } 
//   } 
//document.onmousedown=click; 
//document.onkeydown=click; 


