

function replaceImg(image){ 
	return document.getElementById(image);
}

function showTempBanner(){
	//document.write('<!--<ul class="temp-banners">' + '<li><a href="#"><img src="/images/temp_banner.gif" alt="臨時バナー" width="210" height="36" border="0" /></a></li>' + '<li><a href="#"><img src="/images/temp_banner.gif" alt="臨時バナー" width="210" height="36" border="0" /></a></li>' + '</ul>-->');
	document.write('<!-- temp-bannner -->');
}


/*
	ポップアップウィンドウの関数
*/




function WindowPopUp(URI, windowName, width, height, scrollbar, resizeable) {
	var x = width ? width : 680;
	var y = height ? height : 640;
	var scrollbar = scrollbar ? scrollbar : 'no';
	var resizeable = resizeable ? resizeable : 'no';
	
	if((document.all) && (!window.opera) && (scrollbar == 'yes')){
		x = Number(x) + 16;
	}
	
	var s = window.open(URI, windowName, "width="+ x + ", height=" + y + ", scrollbars=" + scrollbar + ", resizable=" + resizeable);
	s.moveTo(0,0);
	s.focus();
}


window.onload = function () {
	var field = document.getElementById('search').getElementsByTagName('input')[0];
	field.onblur = function (){if(this.value==''){this.form.reset();}};
	field.onfocus = function(){this.value = '';}
}