function disp(url){
    window.open(url, "window_name", "width=580,height=648,scrollbars=yes");
}

	//プラグイン用テキストの再作成
	function remake_pl_txt(myform) {
		var tp_id = myform.tp_id.value;
		var x = myform.x.value;
		var y = myform.y.value;
		var i;
		var sort;
	    for(i = 0; i < myform.sort.length; i++) {
	        if(myform.sort[i].checked) {
	            sort = myform.sort[i].value;
	            break;
	        }
		}
		postdate = 'tp_id=' + tp_id + '&x=' + x + '&y=' + y + '&sort=' + sort;
		HttpRequest("POST", "../pl_image2.php?mode=remake_pl_txt", true, postdate, "plugin_txt");
	}