/* This script list functions used in the front end of the site */

function reloadProductBrowseType(form)
{
	var vtype=form.type.options[form.type.options.selectedIndex].value;

	self.location='product_browse.php?type=' + vtype;
}

function reloadProductBrowseManufact(form)
{
	var vtype=form.type.options[form.type.options.selectedIndex].value;
	var vmanufacturer=form.manufacturer.options[form.manufacturer.options.selectedIndex].value;

	self.location='product_browse.php?type=' + vtype + '&manufacturer=' + vmanufacturer;
}

/* Extended version of the above */
function reloadProductBrowseEngine(form)
{
	var vtype=form.type.options[form.type.options.selectedIndex].value;
	var vmanufacturer=form.manufacturer.options[form.manufacturer.options.selectedIndex].value;
	var vengine=form.engine.options[form.engine.options.selectedIndex].value;

	self.location='product_browse.php?type=' + vtype + '&manufacturer=' + vmanufacturer + '&engine=' + vengine;
}

function reloadProductBrowseCategory(form)
{
	var vtype=form.type.options[form.type.options.selectedIndex].value;
	var vmanufacturer=form.manufacturer.options[form.manufacturer.options.selectedIndex].value;
	var vengine=form.engine.options[form.engine.options.selectedIndex].value;
	var vcategory=form.category.options[form.category.options.selectedIndex].value;

	self.location='product_browse.php?type=' + vtype + '&manufacturer=' + vmanufacturer + '&engine=' + vengine + '&category=' + vcategory;
}

/* functions used for reloading the dealer pages */
function reloadDealerContinent(form)
{
	var dcon=form.cont.options[form.cont.options.selectedIndex].value;

	self.location='dealers.php?cont=' + dcon;
}

function reloadDealerCountry(form)
{
	var dcon=form.cont.options[form.cont.options.selectedIndex].value;
	var dcc=form.cc.options[form.cc.options.selectedIndex].value;

	self.location='dealers.php?cont=' + dcon + '&cc=' + dcc;
}

function reloadDealerRegion(form)
{
	var dcon=form.cont.options[form.cont.options.selectedIndex].value;
	var dcc=form.cc.options[form.cc.options.selectedIndex].value;
	var dreg=form.region.options[form.region.options.selectedIndex].value;

	self.location='dealers.php?cont=' + dcon + '&cc=' + dcc + '&region=' + dreg;
}
