function ShowListings(CO, CA) {
	if(typeof(CA) !== 'undefined' && CA != null) {
	} else {
		var CA = document.getElementById("Category").value;
	}
	document.getElementById("Category").className = "form_Category" + CA;
	document.getElementById("Category").value = CA;
	var Country = document.getElementById("Country").value;
	var State = document.getElementById("State").value;
	if(CO!=Country) State = 0;
	if(CA!=0) CA = "&ca="+CA;
	if(CA==0) CA = "";
	if(Country!=0) Country = "&co="+Country;
	if(Country==0) Country = "";
	if(State!=0) State = "&st="+State;
	if(State==0) State = "";
	window.location = "http://www.firedominator.com/?so=1"+CA+Country+State;
}

function HighlightForm(Form) {
	if(Form==1) document.getElementById("Country").style.cssText = document.getElementById("Country").style.cssText + " color:#FFF; border-color:#063;";
	if(Form==2) document.getElementById("Category").style.cssText = "color:#FFF; border-color:#063;";
	if(Form==3) document.getElementById("State").style.cssText = document.getElementById("State").style.cssText + " color:#FFF; border-color:#063;";
}

function UnhighlightForm(Form) {
	if(Form==1) document.getElementById("Country").style.cssText = document.getElementById("Country").style.cssText + " color:#999; border-color:#666;";
	if(Form==2) document.getElementById("Category").style.cssText = "border-color:#666;";
	if(Form==3) document.getElementById("State").style.cssText = document.getElementById("State").style.cssText + " color:#999; border-color:#666;";
}
