<!--Hide

if (document.images)
{
pic1963= new Image(640,350);
pic1963.src="1963_image.jpg";
pic1964= new Image(640,350);
pic1964.src="1964_image.jpg";
pic1965= new Image(640,350);
pic1965.src="1965_image.jpg";
pic1966= new Image(640,350);
pic1966.src="1966_image.jpg";
pic1967= new Image(640,350);
pic1967.src="1967_image.jpg";
}

function isNumeric(str)
{
  if (str.length != 5)
  {
        alert('VIN must contain 5 numeric digits');
       	document.BdayForm.VIN_Input.focus()
        return false;
    }
  for (var i=0; i < str.length; i++)
  {
    var ch = str.substring(i, i+1)
    if( ch == "." )   //decimal numbes allowed
       continue;
       if( ch < "0" || ch > "9" || str.length == null)
	{
        alert('VIN not Numeric');
     	document.BdayForm.VIN_Input.focus()
        return false;
        }
       if (str == "00000")
	       	{
	       	alert('VIN must be greater than "00000"') 
     		document.BdayForm.VIN_Input.focus()
	        return false;
	        }
  }
  return true
}

// The following code should be stored in the HTML head section
function disp_image()
   {
   var w = document.BdayForm.Year_Input.selectedIndex;
   var selected_text = document.BdayForm.Year_Input.options[w].text;
   srx=eval("pic" + selected_text + ".src")
   document.the_image.src=srx;
   document.Bday_Prod_Form.Pass_Year.value = selected_text;
//   srx=eval(selected_text + " Production Data");
   document.Bday_Prod_Form.Disp_Year.value = selected_text + " Production Data"
   }

function no_copy()
{
alert("Thanks for looking");
}

//Stop Hiding-->

