// JavaScript Document
function loadMakes(year) {
	javascript:ajax_loadContent('make-ymm','/make-populate.php?year='+year,'<select disabled=disabled style="width:170px;"><option>Processing...</option></select>');
	//allowSearch();
}
function loadModels(make, year) {
	javascript:ajax_loadContent('model-ymm','/model-populate.php?make='+make+'&year='+year,'<select disabled=disabled style="width:170px;"><option>Processing...</option></select>');	
	//allowSearch();
}
function allowSearch() {
	javascript:ajax_loadContent('search-ymm','/allow_search.php','Processing...');	
}
function doSearch() {
	document.ymm.submit();	
}

function adjustWidth(ele, growShrink){
	var ymmSelect = ele;
	var theWidth = ymmSelect.style.width;
	
	if(growShrink == 1){
		ymmSelect.style.width = 'auto';
	} else {
		ymmSelect.style.width = '170px';	
	}
}
