function DispImg(src,h,w){
	//URL = "http://fujibi.dbnet.jp/topics/review2.php?img_name=" + src;
	URL = "http://fujibi.dbnet.jp/topics/detail.php?id=" + src;
	w = 320;
	
	var ua = navigator.userAgent;
	if (ua.match(/Opera[\/\s](\d\.\d+)/)) { //Opera
	}
	else if (ua.match(/MSIE (\d\.\d+)/)) { //Explorer
	}
	else if (ua.match(/Mozilla\/(4\.[5678]\d?)/)) { //Netscape4x
	}
	else if (ua.match(/Netscape6?\/([\.\d]+)/)) { //Netscape6x
	}
	else if (ua.match(/Safari\/([\.\d]+)/)) { //Safari
			w = 335; h = Number(h) + 50;
	}
	else if (ua.match(/Gecko/)) {
		if (ua.match(/(Firebird|Firefox)\/([\.\d]+)/)) { //Firefox
			w = 335; h = Number(h) + 50;
		}
		else if (ua.match(/Thunderbird\/([\.\d]+)/)) { //Thunderbird
		}
		else if (ua.match(/rv:([\.\d]+)/)) { //Mozilla
		}
		else { //Mozilla
		}
	}
	else {
		document.write("N/A");
	}
	
	PARA = "width="+ w + ",height=" + h + ",resizable=no,replace=false,scrollbars=yes";
	var WIN = window.open(URL , "img" , PARA);
	WIN.focus();
}