function click2get(msg_no) {
 if	(msg_no.style.display=='none')	msg_no.style.display="";
 else								msg_no.style.display='none';
}

function click2show(msg_no) {
 if	(msg_no.style.visibility=='hidden')	msg_no.style.visibility='visible';
 else									msg_no.style.visibility='hidden';
}

function image_resize(img, maxwidth) {
	if (img.width > maxwidth) {
		img.width = maxwidth;
		img.height = Math.round(maxwidth/img.width*img.height);
	}
}

function image_resize_both (img, maxw, maxh) {
	maxw = maxw | 400;
	maxh = maxh | 300;
	if ((img.width > maxw) || (img.height > maxh)) {
		if (img.width/maxw >= img.height/maxh) {
			img.width = maxw;
			img.height = Math.round(maxw/img.width*img.height);
		} else {
			img.height = maxh;
			img.width = Math.round(maxh/img.height*img.width);
		}
	}
}
