if (document.images){
  cbuttonon= new Image(19,19);
  cbuttonon.src="/img/button-down.gif";
  cbuttonoff= new Image(19,19);
  cbuttonoff.src="/img/button-right.gif";
  
  loading_on= new Image(16,16);
  loading_on.src="/img/loading.gif";
  loading_off= new Image(16,16);
  loading_off.src="/img/ok.gif";
}

function go_changeloc(val){ 
  if (typeof val === 'undefined'){ var val = document.getElementById("selcountry").value;}
  var c = val.split("|");
  //var c=document.getElementById("selcountry").value.split("|");
  //var s=document.getElementById("selstate").value.split("|");
  //var ct=document.getElementById("selcity").value.split("|");  
  var curl=c[1];
  //var surl=s[1];
  //var cturl=ct[1];
  var url = curl;
  //if (surl !="NA" && surl != "") url=url+"/"+surl;
  //if (cturl !="NA" && cturl != "") url=url+"/"+cturl;  
  window.location="http://www.youadlist.com/"+url;
}