/**
* 求人用ボタン表示
*/
function writeNavibutton(outputType) {
//画像のパスを設定
var jobcnt = 0;
if (jobcnt>0) {
if ('top'==outputType) {
// トップページ用のボタン表示
document.write('
'+"\n");
} else if ('interview'==outputType) {
// インタビューページ用のボタン表示
document.write('
'+"\n");
}
}
}