#!/usr/bin/perl # Define arrow icon images $buttons_dir="images/buttons"; $maps_dir="images/maps"; $info_dir="info"; $map_tl_img="arrow_tl.gif"; $map_tm_img="arrow_tm.gif"; $map_tr_img="arrow_tr.gif"; $map_ml_img="arrow_ml.gif"; $map_mr_img="arrow_mr.gif"; $map_bl_img="arrow_bl.gif"; $map_bm_img="arrow_bm.gif"; $map_br_img="arrow_br.gif"; # Define special variables $config_file="sydney.cfg"; $default_map_img="a1.jpg"; $FieldSep="}"; $map_prog="map.cgi"; $NotDefined=""; $default_vert=1; $default_horz=6; $map_info_file=$NotDefined; $street_info_file=$NotDefined; # Language files for text info $EngFile="messages.eng"; $DeuFile="messages.ger"; $FraFile="messages.fra"; # Define the list of language indicators $English="eng"; $German="ger"; $French="fra"; $default_lang=$English; 1;