function inter_open(sw,momid,no,pos)
{
    var no_def = 1; // noのデフォルト値
    switch (arguments.length) {
	// 既定のソフトウェアはjmol
    case 0: sw = 'jmol';
	// momidの既定値はなし
    case 1: momid = '';
	// 既定の挿入ソースファイル番号は1
    case 2: no = 1;
	// 既定のページ内ジャンプ位置は1
    case 3: pos = 1;
    }
    window.open('index.php?p=' + momid + '&i=' + sw + '&n=' + no + '&f=' + pos + '#inter' + pos,'_self');
}
