function sizeChange($cnt){
	var obj = document.getElementById("layerArea");
	if ($cnt == 2)
	{
		obj.style.height = "80px";
	}
	else {
		obj.style.height = "180px";
	}	
}


