// JavaScript Document

function resizeFrame(iframeObj){
	// ¾ÆÀÌÇÁ·¹ÀÓ¿¡¼­ ÀÐ¾îµéÀÎ ÆäÀÌÁöÀÇ body
	var innerBody = iframeObj.contentWindow.document.body;
	
	// ³ôÀÌ ´Ù½Ã¼³Á¤
	var innerHeight = innerBody.scrollHeight + (innerBody.offsetHeight - innerBody.clientHeight);
	iframeObj.style.height = innerHeight;
	
	/*---------- ³ÐÀÌµµ ÇÔ²² ÀÚµ¿Á¶Á¤µÇ¾ß ÇÑ´Ù¸é ÁÖ¼®À» Ç®¾îÁÖ¼¼¿ä~--------------------------------
	// ³ÐÀÌ ´Ù½Ã¼³Á¤ 
	var innerWidth = innerBody.scrollWidth + (innerBody.offsetWidth - innerBody.clientWidth);
	iframeObj.style.width = innerWidth;     
	---------------------------------------------------------------------------------------------*/
	
	//this.scrollTo(0,0); //[¶ôÀ§µà]¾Æ·»Æ¼ ´ÔÀÇ ÁöÀû
}

function MakeFlash(source,id,width,height,wmode, here)
{ 
 return "<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="+width+" height="+height+" id="+id+"><param name=wmode value="+wmode+" /><param name=movie value="+source+" /><param name=quality value=high /><param name=FlashVars value='here="+here+"' /><embed src="+source+" quality=high wmode="+wmode+" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash\" width="+width+" height="+height+"></embed></object>";
}
// Direct Write Type
function DocumentWrite(src)
{
 document.write(src);
}
