function QLS_jump_to_url(targ, selObj, restore){
  var selectValue = selObj.options[selObj.selectedIndex].value;  
  if(selectValue.indexOf("http") >= 0 || selectValue.indexOf("https") >= 0) {
  	var lenHttp = 0;
	
	if(selectValue.indexOf("http") >= 0)
		lenHttp = "http://".length;
	else
		lenHttp = "https://".length;
		
	var domainUrl = selectValue.substr(lenHttp, selectValue.length);
  } 
   
  eval(targ+".location = '"+ selectValue +"'");
  if (restore) {
  	selObj.selectedIndex = 0;
  }  
}