function flash(src,width,height,tr){
    object = '';
    object += '<object type="application/x-shockwave-flash" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" id="param" width="'+width+'" height="'+height+'">';
    object += '<param name="movie" value="'+src+'">';
    if(tr=='1'){
         object += '<param name="wmode" Value="Transparent">';
    }
    object += '<embed src="'+src+'" quality="high" ';    
    if(tr=='1'){
        object += ' wmode="transparent" ';
    }
    object += ' bgcolor="#ffffff" menu="false" width="'+width+'" height="'+height+'" swliveconnect="true" id="param" name="param" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>';
    object += '</object>';
    document.write(object);
}



		function resizeFrame(iframeObj){
				var innerBody = iframeObj.contentWindow.document.body;
				oldEvent = innerBody.onclick;
				innerBody.onclick = function(){ resizeFrame(iframeObj, 1);oldEvent; };

				var innerHeight = innerBody.scrollHeight + (innerBody.offsetHeight - innerBody.clientHeight);
				iframeObj.style.height = innerHeight;

		    //		if( !arguments[1] )        /* 특정 이벤트로 인한 호출시 스크롤을 그냥 둔다. */
			//			this.scrollTo(1,1);
		}
