//プリロード
function preload(src) {
	if (!src) {
		var srcarray = new Array('/images/title_hover.gif', '/images/hover_g.gif', '/images/hover_b.gif');
	}
	else {
		var srcarray = new Array(src);
	}
	for (i in srcarray) {
		var img = new Image();
		img.src = srcarray[i];
	}
}
//検索窓テキスト
function SelTxt() {
	if(document.form.keyword.value == document.form.keyword.defaultValue) {
		document.form.keyword.value = "";
	}
}
//画像ポップアップ
function openWin(src){
	var i = new Image(); i.src = src;
	var pop_win = window.open ('', '_blank', 'width='+i.width+',height='+i.height+',scrollbars=no,resizable=yes');

	pop_win.window.document.open();
	pop_win.window.document.write(
	'<html>'
	+'<head><title>'+i.alt+'</title></head>'
	+'<body style="margin: 0; padding: 0; text-align: center;">'
	+'<img src="'+i.src+'" alt="" />'
	+'</body>'
	+'</html>'
	);
	pop_win.window.document.close();
}