backcolor = "" ;

function OnMover(ID , Color ){
	backcolor = ID.style.backgroundColor ;
	ID.style.backgroundColor = Color ;
}

function OnMout(ID){
  ID.style.backgroundColor = backcolor ;
}

function Search(URL,SORT,ID,NAME3){

	var TextValue = document.getElementById("SEARCH_TEXT").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=" + ID + "&s=" + SORT + "&min=" + MinPrice + "&max=" + MaxPrice + "&" + NAME3 + "=1" ;
}


