#! /usr/bin/perl require './../../tophead3.pl'; &formdec; &main; sub main { print "Content-Type: text/html\n\n"; # ヘッダ ($stit,$pkuz) = &titlehead; &tphead; &pankuzu($pkuz); # 左 &lefthead; &leftmenu("book"); &guide; &banner; &klink; &leftfoot; # 右 &righthead_list; &rightmain; &rightfoot; # フッタ &footprint; exit; } # 右メニュー・メインコンテンツ sub rightmain { print <<"end of RIGHT";
洋古書詳細検索

検索したい項目にワードを入力または選択して、検索ボタンを押して下さい。
検索結果は新しくデータベースに登録された順番に\表\示されます。
入力は全て半角にしてください。

洋書詳細検索
\表\示件数
(Display)
件(matches)
ISBN (半角英数字)
※ハイフン(-)は必要ありません。
(Hyphen not required)
書名
(Title)
を含む(半角英数字)
AND
を含む(半角英数字)
AND
を含む(半角英数字)
著者名
(Author)
(半角英数字)
※姓名の順に著者の名前を入力してください。
出版社名
(Publisher)
(半角英数字)
キーワード
(Subject)
(半角英数字)
出版年
(Publication Year)
年〜
条件をクリア
end of RIGHT } # titleタグ・パンくず用データ編集 sub titlehead { my $titletag = "洋書 > 古書詳細検索"; my $pankuzu = " > 洋書 > 古書詳細検索"; return($titletag,$pankuzu); } # エラー処理 sub error($) { my $error = shift; &adabasclose; print "
ERROR:". $error. "
\n"; &rightfoot; &footprint; exit; }