function showThumb(id) {
	document.getElementById("info_"+id).style.visibility="visible";	
}

function hideThumb(id) {
	document.getElementById("info_"+id).style.visibility="hidden";
}

function gotoDetail(id) {
	
	location.href = "http://"+location.host+location.pathname+"?submit=detail&carid="+id+"&id="+document.getElementById('curpage').value+"&L="+document.getElementById('curlang').value;
}

function gotoPage(page) {
	var theuri = location.search;
	theuri = theuri.replace(/page=(\w)&/, 'page='+page+'&');
	location.href = "http://"+location.host+location.pathname+theuri;
}

function showPic (whichpic, position) {
 if (document.getElementById) {
  document.getElementById('as24xmlpiccount').innerHTML = position;
  document.getElementById('as24xmlimage').src = whichpic.href;
  return false;
 } else {
  return true;
 }
}
