function up(theimage, thename) 
{ 
	theimage.src = "images/menu/" + thename + "-on.gif";
}

function down(theimage, thename)
{ 
	theimage.src = "images/menu/" + thename + "-off.gif";
}

function mincheck(min, current)
{
	if (current.value < min)
	{
		alert("This item requires a minimum order of " + min + " pieces.");
		current.value = min;
	}
}

function Finish()
{ 
	var p1=""
	var p2=""
	
	p1=window.opener.document.forms[0].Password.value;
	p2=document.forms[0].Password2.value;
	
	window.opener.document.forms[0].Password2.value=p1;
	
	if (p1==p2)
	{      
		window.opener.document.forms[0].SubmitButton.click();
		alert("Passwords match.  Click OK to continue.")
		window.close();
	}
	else
	{
		alert("Passwords do not match.  Please enter it again")
	}
}

function SetWhyBB()
{
	var ob = document.getElementById('whybb');
	
	// add scroll bar when not on home page
	if( location.href != "http://www.bestbuyuniforms.com/" ) 
	{
		if( ob )
		{
			ob.style.height = '350px';
			ob.style.overflowY = 'scroll';
		}
	}
}

