* 스크립트<script type="text/javascript">
function resizeiframecent(ifid, oldx, oldy) {
var actualwidth = document.getElementById(ifid).offsetWidth;
var proporcion = actualwidth / oldx;
newheight=proporcion * oldy;
var newheight2 = Math.ceil(newheight);
document.getElementById(ifid).height = newheight2;
}
</script>
* 아이프레임
<iframe src="아이프레임 경로" frameborder="0" id="iframe" onload="resizeiframecent('iframe','560','315')" width="100%"></iframe>