﻿// JScript File

function validateSearch()
{

	f = document.frm_onchange;
	
	var r = true;
	if (f.int_C_Year.selectedIndex==0)
	{
		alert ("Select a Year");
		f.int_C_Year.focus();
		r = false;
	} else if  (f.int_C_Make8.selectedIndex==0) {
		alert ("Select a Make");
		f.int_C_Make8.focus();
		r = false;
	} else if (document.getElementById("int_C_Model8") != null) {
	     if  ((f.int_C_Model8.selectedIndex==0) && (f.int_C_Model8.value == ""))	{
		    alert("Select a Model");
		    f.int_C_Model8.focus();
		    r = false;
	    }	
	}
	return r;
	
}
/*===================================================================================================================
Animation Script
=====================================================================================================================*/
function onUpdating(){

    if(document.getElementById("txtLoading").value==1){
        document.getElementById("tabAnimation").style.display = '';
    }
}
function onUpdated(){
    document.getElementById("tabAnimation").style.display = 'none';
    document.getElementById("txtLoading").value=1;
}
