// JavaScript Document
function ncs_x_i(thisForm)
{
  if(thisForm.name.value=="")
  {
    alert("Name is a required field...")
    return false
  }

  if(thisForm.tel.value=="")
  {
    alert("Telephone is a required field...")
    return false
  }

  if(thisForm.email.value=="")
  {
    alert("Email is a required field...")
    return false
  }

  if (thisForm.email.value.indexOf("@")==-1)
  {
      alert("Please input a valid email address!")
      return false
  }
  return true
}

function openWindow(img)
{
newWindow=window.open(img,"newWin","width=640, height=480, left=0,top=0,right=0,bottom=0")
}

function showpopTD(url){
	userwindow = window.open(url, 'NewWin','resizable=no, scrollbars=no, menubar=no,status=yes,width=358,height=495, left=0,top=0');
	var img = userwindow.document.getElementById("carimage");
	userwindow.focus();
}

function showcarfax(url){
	userwindow = window.open(url, 'NewWin','resizable=yes, scrollbars=yes, menubar=no,status=yes,width=720,height=610, left=0,top=0');
	var img = userwindow.document.getElementById("carimage");
	userwindow.focus();
}

function showpopMO(url){
	userwindow = window.open(url, 'NewWin','resizable=no, scrollbars=no, menubar=no,status=yes,width=358,height=495, left=0,top=0');
	var img = userwindow.document.getElementById("carimage");
	userwindow.focus();
}

function showpopEF(url){
	userwindow = window.open(url, 'NewWin','resizable=no, scrollbars=no, menubar=no,status=yes,width=358,height=495, left=0,top=0');
	var img = userwindow.document.getElementById("carimage");
	userwindow.focus();
}

function showpopCD(url){
	userwindow = window.open(url, 'NewWin','resizable=no, scrollbars=no, menubar=no,status=yes,width=431,height=523, left=0,top=0');
	var img = userwindow.document.getElementById("carimage");
	userwindow.focus();
}

