// JavaScript Document
function doSizePlus() {
	var h = jQuery('#message_list').css('height'); 
	var tmp	= parseInt(h);
if(tmp<=200){
	var t	= tmp +20;
	var n	= t + 'px';
	jQuery('#message_list').css('height', n); 
	}
}
function doSizeMinus() {
	var h = jQuery('#message_list').css('height'); 
	var tmp	= parseInt(h);
if(tmp>60){
	var t	= tmp - 20;
	var n	= t + 'px';
	jQuery('#message_list').css('height', n); 
	}
}
