function checkBrowseForm() {
	if($('#BeadForm_color_category').val() == '' && $('#BeadForm_price').val() == '' && $('#BeadForm_category').val() == ''){
		alert('Please select a category to browse by.');
		return false;
	} else {
		return true;
	}
}

function forgotpassword(myForm){
	var us = $('#sidebarUS').val();
	if(us.length == 0 || us == 'Email'){
		$('#sidebarUS').css('background-color', '#dbd4e2');
		alert('Please enter your username in the highligted area, then click Forgot Password again.');
		return false;
	} else {
		$('#hiddenUS').val(us);
		$(myForm).submit();
	}	
	return false;
}

