<!--
// focus on this window
this.focus();

// open vehicle image window
function open_window(image,testID){
  if(window.piccy&&!piccy.closed){
    piccy.focus();
  } piccy=window.open('http://www.lpdriver.co.uk/201244_Webfiles/reviews/detail.asp?image='+image+'&testID='+testID,"pic",'resizable=0,width=505,height=338');
}

// Open manufacturer web site window
function openSiteWin(manURL){
  manWin=window.open(manURL,'manWin','menubar=yes,scrollbars=yes,status=yes,toolbar=yes,location=yes,resizable=yes');
  document.cars.sections.selectedIndex=0;
}

// open map window
function showMap(dealerID){
  if(window.piccy&&!piccy.closed){
    piccy.focus();
  }
  piccy=window.open("loc_map.asp?dealerID="+dealerID,"pic",'resizable=0,width=550,height=500,menubar=yes');
}
//-->
