
window.onload=window.onresize= function SR_reSize(txt){


	
	document.all.container.style.height     = document.body.scrollHeight ;  

	if (document.body.scrollHeight < 650)  {    
		document.all.container.style.height = "650px";    // ³ôÀÌ  
	}else{

	/* Å©±â ±¸ÇØ¼­ ¸®ÅÏ */
	var re = /px/g;
	var txt = document.all.container.style.height ;
	txt = txt.replace(re,"");

	if ( parseInt(txt) < 650) {
		txt = 650
	}

	document.location.href = '#';
	document.all.footer.style.top = (parseInt(txt) + 20) + 'px';
	document.all.footer.style.display = "block";
	}
}