function searchOpen() {
	cond = document.getElementById("queriesSect");
	
	if (cond.style.display == "none") {
		cond.style.display = "block";
		cond.style.disabled = true;
	}
	else {
		cond.style.display = "none";
		cond.style.disabled = false;
	}
}
function logintext() {
	
	var text = document.getElementById("search-text");
	
	text.innerHTML = "<b>フリーワード検索には<br><a href='/?page=member_account_entry.form'>無料会員登録</a>が必要です。<b>";
	text.style.backgroundColor = "#A8A8A8";
	text.style.width = "155px";
	text.style.height = "33px";
	text.style.color = "#FFFFFF";
	text.style.paddingTop = "8px";
	text.style.paddingLeft = "4px";
	text.style.fontSize = "12px";
	
	var a = text.getElementsByTagName("a");
	
	a[0].style.color = "#FF0000";
	a[0].style.textDecoration = "underline";
}

function requesttext() {
	
	var text = document.getElementById("index-menu_order");
	
	text.innerHTML = "<br/><a href='/?page=explanation_company.shipment_service'>参加企業募集中</a><b>";
	text.style.backgroundImage = "none";
	text.style.backgroundColor = "#A8A8A8";
	text.style.color = "#FFFFFF";
	text.style.fontSize = "13px";
	
	
	var a = text.getElementsByTagName("a");
	
	a[0].style.color = "#FF0000";
	a[0].style.textDecoration = "underline";
	a[0].style.backgroundImage = "none";
	a[0].style.display = "";
	a[0].style.textIndent = 0;
}

function reviewtext() {
	
	var text = document.getElementById("hoge");
	
	text.innerHTML = "<div style='margin-left: 5px; width: 350px;height: 85px; padding-top: 30px; background-color: #A8A8A8; text-align: center; vertical-align: middle;'><b>レビュー書き込みには<br><a href='/?page=member_account_entry.form'>無料会員登録</a>が必要です。<b></div> ";
	text.style.backgroundImage = "url(../img/syosai/review-back.gif)";
	text.style.backgroundRepeat = "no-repeat"
	text.style.width = "369px";
	text.style.height = "131px";
	text.style.marginTop = "1px";
	text.style.color = "#FFFFFF";
	text.style.paddingTop = "8px";
	text.style.paddingLeft = "4px";
	text.style.fontSize = "12px";
	
	var a = text.getElementsByTagName("a");
	
	a[0].style.color = "#FF0000";
	a[0].style.textDecoration = "underline";
}
