function open_popup (coursecode) {
// FLMCゾーンのパスを定義
var pass = "/course/cd?c="+coursecode+"";

// ウィンドウのスタイルを定義
var strg1 = ',toolbar=no,location=no,directories=no';
var strg2 = ',status=no,menubar=no,scrollbars=yes';
var strg3 = ',resizable=yes,copyhistory=no';
var the_rest = strg1+strg2+strg3;

location.href=pass;

// pop = window.open(pass,"gaiyo","width=650,height=600"+the_rest);

}