/*
 * openMap(x, y, title, address, tel, caption)
 * x 北緯
 * y 東経
 * title フキダシ内のタイトル
 * address フキダシ内の住所
 * tel フキダシ内の電話番号
 * caption フキダシ内のキャプション
 *
 * 設定
 * map.phpの位置や名前を変えた場合は、openメソッド内のURLを変更してください。
*/
function openMap(x, y, title, address, tel, caption)
{
    queryString = 'x=' + escape(x) + '&y=' + escape(y) + '&sub=' + escape(title) + '&addr=' + escape(address) + '&tel=' + escape(tel) + '&caption=' + escape(caption);
    mapWin = open('/map/map.php?' + queryString, 'map', 'width=680,height=450,status=yes');
    mapWin.focus();
}
