BGcolor = "" ;
var img1 = new Image() ;
var img2 = new Image() ;
var mainURL = "http://etc.auction7.net/images/" ;
img1 = mainURL + "go_1.gif" ;
img2 = mainURL + "go_2.gif" ;


function JumpF(JumpValue){
	location.href = JumpValue ;
}

function OnMover(ID , Color ){
	BGcolor = ID.style.backgroundColor ;
	ID.style.backgroundColor = Color ;
}

function OnMout(ID){
  ID.style.backgroundColor = BGcolor ;
}

function SearchGo(URL,SORT,NAME3,GID){
	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=" + GID + "&s=" + SORT + "&min=" + MinPrice + "&max=" + MaxPrice + "&" + NAME3 + "=1" ;
}

function On(ID,name){
	ID.src = mainURL + name + ".gif" ;
}

function Off(ID,name){
	ID.src = mainURL + name + ".gif" ;
}

