// <![CDATA[
function createHeight(){
	//右と左の高さを比較して右が小さければ左にそろえる//
	if(document.all){
	    if(600 > document.all("cnt").offsetHeight){
			document.all("cnt").style.height='600px';
		}
	}else if(document.getElementById){
	    if(600 > document.getElementById("cnt").offsetHeight){
			document.getElementById("cnt").style.height='600px';
		}
	}
}
// ]]>

