function image_disp( img , type ) {
	if ( type == 1 ) sz = 200;
	else sz = 150;
	if (img.width == '1' && img.src.match(/_SCT/)) {
		img.src = '/img/noimage_' + sz + '.gif';
		img.width = sz;
		img.height = sz;
	} else if (img.width == '1' && img.src.match(/_SCM/)) {
		img.src = img.src.replace('_SCM','_SCT');
	} else if (img.width == '1' && img.src.match(/_SCL/)) {
		img.src = img.src.replace('_SCL','_SCM');
	} else if (img.width != '1' ) {
	x = img.width;
	y = img.height;
		if ( x >= y ) {
		dy = Math.floor( ( y * sz ) / x );
			img.width = sz;
			img.height = dy;
		} else {
		dx = Math.floor( ( x * sz ) / y );
			img.width = dx;
			img.height = sz;
		}
	} else {
		img.src = '/img/noimage_' + sz + '.gif';
		img.width = sz;
		img.height = sz;
	}

}

