bcolor = "" ;

function OnMover(ID , Color ){
	bcolor = ID.style.backgroundColor ;
	ID.style.backgroundColor = Color ;
}

function OnMout(ID){
  ID.style.backgroundColor = bcolor ;
}

function Search_a(URL,NAME3){

	var TextValue = document.getElementById("SEARCH_TEXT").value ;
	var Category = document.getElementById("RANKING_CATEGORY").value ;
	if( TextValue != "" ){
		location.href= URL + "q=" + TextValue + "&id=" + Category + "&" + NAME3 + "=1" ;
	}
}


function Search_b(URL,SORT,NAME3){
	var TextValue = document.getElementById("SEARCH_TEXT").value ;
	if( TextValue != "" ){
		location.href= URL + "q=" + TextValue + "&sort=" + SORT + "&" + NAME3 + "=1" ;
	}
}

function Search_y(URL,SORT,NAME3){
	var TextValue = document.getElementById("SEARCH_TEXT").value ;
	var Category = document.getElementById("RANKING_CATEGORY").value ;
	var MinPrice = document.getElementById("MIN_PRICE").value ;
	var MaxPrice = document.getElementById("MAX_PRICE").value ;
	if( !MinPrice.match(/^[1-9][0-9]*$/) ){ MinPrice = "" ; }
	if( !MaxPrice.match(/^[1-9][0-9]*$/) ){ MaxPrice = "" ; }
	location.href= URL + "q=" + TextValue + "&id=" + Category + "&s=" + SORT + "&min=" + MinPrice + "&max=" + MaxPrice + "&" + NAME3 + "=1" ;
}

