function inputq_focus(e)
{
	if (e.value == '検索ワードを入力');
	{
		e.value = '';
	}
}

function inputq_blur(e)
{
	if (e.value == '')
	{
		e.value = '検索ワードを入力';
	}
}


function form2_submit(frm)
{
	var wd = frm.elements['q'].value;
	if ( wd == '検索ワードを入力')
	{
		alert('検索ワードを入力して下さい。');
		frm.elements['q'].focus();
		return false;
	}
	else if ( wd == 'ジーンズブランド' || wd == '------------')
	{
		alert('ブランドを選択して下さい。');
		return false;
	}
	else
	{
		frm.submit();
	}
	
	return true;
}



