<!--
function SubmitContactForm()
{
   if (Validate('emailform')) 
   { 
      document.emailform.submit(); 
   }
}

function PrintCar(intCarID)
{
   var objWindow = window.open('printcar.asp?ID=' + intCarID, 'auto', 'resize=no, location=no, menubar=no, toolbar=no, width=575, height=700')
   objWindow.print();
}

function ShowMenu(intID)
{
   document.getElementById('menu' + intID).style.background = '#404040'
   document.getElementById('bullet' + intID).src = 'images/bullets/bullet-whiteblock.gif'
}

function HideMenu(intID)
{
   document.getElementById('menu' + intID).style.background = ''
   document.getElementById('bullet' + intID).src = 'images/bullets/bullet-redblock.gif'
}
//-->
