
// for the select brand droplist
function selectbrand() {
	var selectedval = document.getElementById("browsebrand").options[document.getElementById("browsebrand").options.selectedIndex].value;
	
	if ( selectedval == "all" ) {
		window.location = "http://www.growstronger.com/artcoder/component/page,shop.browse/option,com_virtuemart/Itemid,30/";
	} else if ( selectedval == "handtools" ) {
		window.location = "http://www.growstronger.com/artcoder/component/page,shop.browse/category_id,1/option,com_virtuemart/Itemid,30/";
	} else if ( selectedval == "gardentools" ) {
		window.location = "http://www.growstronger.com/artcoder/component/page,shop.browse/category_id,3/option,com_virtuemart/Itemid,30/";
	} else if ( selectedval == "powertools" ) {
		window.location = "http://www.growstronger.com/artcoder/component/page,shop.browse/category_id,2/option,com_virtuemart/Itemid,30/";	
	}
	
	
}


function toggle ( i )
{
	var ele = e ( i );
	
	if ( ele.style.display == 'block' )
	{
		ele.style.display = 'none';	
	}
	else
	{
		ele.style.display = 'block';	
	}
}

function e ( i )
{
	return document.getElementById ( i );
}

