var imageIcon = new Array();
imageIcon[ 0 ] = '../../library/image/Marker/IconGray.gif';
imageIcon[ 1 ] = '../../library/image/Marker/Icon.gif';


// 都道府県を変更した場合
function changeSelectPrefecture()
{
	document.getElementById( 'Prefecture' ).selectedIndex = 0;
}
// 検索結果をリセットする関数
function resetResult()
{
	var textHtml = '<table width = "100%" height = "350" border = "0" cellspcing = "0" cellpadding = "0" bgcolor = "#eeeeee"><td align = "center">';
	textHtml += '<img id = "icon" src = "' + imageIcon[ 0 ] + '" alt = "cheltenham software" />';
	textHtml += '</td></table>';
	document.getElementById( 'PanelResult' ).innerHTML = textHtml;
}


// タイトル文字
cheltenhamText_displayTextGradually( 'LabelGreeting', '郵便番号を検索できます。', 500, 20 );

resetResult();



