
/*¾ÆÀÌÇÁ·¹ÀÓ ÀÚµ¿ ¸®»çÀÌÁî*/
function resizeFrame(iframeObj)
{
    var innerBody = iframeObj.contentWindow.document.body;
    var innerHeight = innerBody.scrollHeight + (innerBody.offsetHeight - innerBody.clientHeight);
    var innerWidth = innerBody.scrollWidth + (innerBody.offsetWidth - innerBody.clientWidth);
    iframeObj.style.height = innerHeight;
    iframeObj.style.width = innerWidth;
}


/*¾ÆÀÌÇÁ·¹ÀÓ ¿Â·Îµå*/		
function IframeLoad(src,title){
	document.write ("<iframe name=\"xCmsContents\" frameborder=\"0\" width=\"100%\" src=\""+src+"\" onload=\"resizeFrame(this)\" marginwidth=\"0\" marginheight=\"0\" title=\""+title+"\"></iframe>");
}