function FindByLocation()
{
var FCode = document.FindItems.franchise.value;
if (FCode == 'NoLocationSelected')
{
alert('Please select an ezbay stores location.')
}
else
{
var URLstring1= 'http://search-desc.ebay.com/';
var URLstring2= '_W0QQcatrefZC5QQfbdZ1QQfclZ3QQflocZ1QQfromZR6QQfrppZ50QQfsooZ1QQfsopZ1QQftrtZ1QQftrvZ1QQftsZ2QQpfidZ0QQsacatZQ2d1QQsacurZ0QQsadisZ200QQsargnZQ2d1QQsaslZezbaystoresQQsaslcZ0QQsaslopZ1QQsofocusZbs';
var FullURLstring= URLstring1 + FCode + URLstring2;
window.open(FullURLstring);
//window.location.href=FullURLstring;
}
}

function FindByConsignorID(e)
{
var code;
if (e.keyCode) code = e.keyCode;
else if (e.which) code = e.which;
if (code==13)
{
if(document.FindItems.consignorid.value == '')
{
alert('Enter Your ezbay auction ID and press Enter');
}
else
{
var Consignor= document.FindItems.consignorid.value;
var URLstring1= 'http://search-desc.ebay.com/';
var URLstring2= '_W0QQcatrefZC5QQfbdZ1QQfclZ3QQflocZ1QQfromZR6QQfrppZ50QQfsooZ1QQfsopZ1QQftrtZ1QQftrvZ1QQftsZ2QQpfidZ0QQsacatZQ2d1QQsacurZ0QQsadisZ200QQsargnZQ2d1QQsaslZezbaystoresQQsaslcZ0QQsaslopZ1QQsofocusZbs';
var FullURLstring= URLstring1 + Consignor + URLstring2;
document.FindItems.consignorid.value=''
window.open(FullURLstring);
//window.location.href=FullURLstring;
}
}
}

function FindByConsignorIDSubmit()
{
	var Consignor= document.FindItems.consignorid.value;
	var URLstring1= 'http://search-desc.ebay.com/';
	var URLstring2= '_W0QQcatrefZC5QQfbdZ1QQfclZ3QQflocZ1QQfromZR6QQfrppZ50QQfsooZ1QQfsopZ1QQftrtZ1QQftrvZ1QQftsZ2QQpfidZ0QQsacatZQ2d1QQsacurZ0QQsadisZ200QQsargnZQ2d1QQsaslZezbaystoresQQsaslcZ0QQsaslopZ1QQsofocusZbs';
	var FullURLstring= URLstring1 + Consignor + URLstring2;
	document.FindItems.consignorid.value=''
	window.open(FullURLstring);
	//window.location.href=FullURLstring;
}