//현재 페이지의 iframe의 높이를 설정
function updateIFrame( height, frameid ) {
	
	if( typeof(frameid) == 'undefined')
		return;	
	
    var iframe = document.getElementById( frameid );
    iframe.setAttribute( 'height', height );
}



