var Current;
function Default()
{
	x_DisplayDataSheet('','','Vendor', DataSheet_cb );
}
function DataSheet(order)
{
	var vendor;
	var equipment;
	vendor = document.getElementById("Vendor").value;
	equipment = document.getElementById("Equipment").value;
	if (vendor=='ALL')
	{
		vendor='';
	}
	if (equipment=='ALL')
	{
		equipment='';
	}
	if (order == '' && Current != '')
	{
		order = Current;
	}
	if (order == 'Vendor')
	{
		document.getElementById('DataSheetVendor').style.backgroundColor="#F0F0F2";
		document.getElementById('DataSheetEquipment').style.backgroundColor='#99AAB4';
	}
	else
	{
		document.getElementById('DataSheetVendor').style.backgroundColor ='#99AAB4';
		document.getElementById('DataSheetEquipment').style.backgroundColor ='#F0F0F2' ;
	}
	//alert(vendor + ', ' + equipment);
	x_DisplayDataSheet(vendor,equipment,order, DataSheet_cb );
}
function DataSheet_cb(z)
{
	document.getElementById("DataSheetResults").innerHTML = z.substr(1,(z.length-1));
}
