// JavaScript Document
function funct_Brand()
{
	if (document.frmTemp.cboBrand.value == "Dickies") 
	{
		document.frmTemp.action = "Dickies.html"
		document.frmTemp.submit();
	}
	if (document.frmTemp.cboBrand.value == "Cherokee") 
	{
		document.frmTemp.action = "Cherokee.html"
		document.frmTemp.submit();
	}
	if (document.frmTemp.cboBrand.value == "Baby Phat") 
	{
		document.frmTemp.action = "BabyPhat.html"
		document.frmTemp.submit();
	}
	if (document.frmTemp.cboBrand.value == "Adar") 
	{
		document.frmTemp.action = "Adar.html"
		document.frmTemp.submit();
	}
	if (document.frmTemp.cboBrand.value == "HQ") 
	{
		document.frmTemp.action = "HQ.html"
		document.frmTemp.submit();
	}
	if (document.frmTemp.cboBrand.value == "Prestige") 
	{
		document.frmTemp.action = "Prestige.html"
		document.frmTemp.submit();
	}
	if (document.frmTemp.cboBrand.value == "Littmann") 
	{
		document.frmTemp.action = "Littmann.html"
		document.frmTemp.submit();
	}
}
