// JavaScript Document
function LoadBrandType()
{
	var BrandID = '';
}
function ListBox(brandtype)
{
	if(brandtype=='1')
	{ 
		document.FormSearch1.brand_product.selectedIndex='1';
		document.getElementById('table1').style.display='';
		document.getElementById('table2').style.display='none';
	}
	if(brandtype=='2')
	{ 
		document.FormSearch2.brand_product.selectedIndex='2';
		document.getElementById('table1').style.display='none';
		document.getElementById('table2').style.display='';
	}
}

function SearchList()
{
		document.FormSearch1.submit();
}
function SearchList2()
{
		document.FormSearch2.submit();
}
function ListAjax1(brandcarid)
{
		var	xScript;
		xScript = document.createElement('SCRIPT');
		xScript.setAttribute('type','text/javascript');
		xScript.setAttribute('id','ListSub1Name');
		xScript.setAttribute('src','ajax.php?actions=ListSub1&brandcarid='+brandcarid+'&Rand='+Math.random());
		document.getElementsByTagName('BODY')[0].appendChild(xScript);	
}
