function getFlashMovieObject(movieName)
{
  if (window.document[movieName]) 
  {
      return window.document[movieName];
  }
  if (navigator.appName.indexOf("Microsoft Internet")==-1)
  {
    if (document.embeds && document.embeds[movieName])
      return document.embeds[movieName]; 
  }
  else // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
  {
    return document.getElementById(movieName);
  }
}
/**
 * Highlight selected state at Flash map
 **/
function setMapOption(index) {
	//Go to search page with selected state
	goToSelectedState(index);
	//set map
	var fObj = getFlashMovieObject("map");
	fObj.SetVariable("current", index);
	fObj.SetVariable("_parent", index);
	fObj.TGotoLabel("_root.mcCountries",index);
	fObj.TPlay("_root.mcCountries");
}

function goToSelectedState(stateShortName)
{
	var states = new Array (" ","AL","AK","AZ","AR","CA","CO","CT","DE","FL","GA","HI","ID","IL","IN","IA","KS","KY","LA","ME","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PA","RI","SC","SD","TN","TX","UT","VT","VA","WA","WV","WI","WY");
	var stateId = 0;
	//
	for(var i=0; i < states.length; i++) {
		if(states[i] == stateShortName) {
			stateId = i;
			break;
		}
	}
	//
	document.location = goToStateURL+stateId;
}

/**
 * Select option by given value 
 **/
function setOption(value) {
	var selectTag = document.getElementById("ad_state_id");
	//
	for(var i=0; i < selectTag.options.length; i++) {
		selectTag.options[i].selected = false;//unset
		if(selectTag.options[i].value == value)//check value
			selectTag.options[i].selected = true;//set
	}
}