function password_forgot()
{ 
	var f;
	f=document.forms["homelogin"];
	
	if(f.username.value=='')
	{
		alert("Please enter your email address in the sign in box & we'll send you a password reminder.");
		return;
	}
	f.action.value="authforgotten";
	f.submit();
}



function change(con)
{
	if(con.value=='e.g wine')
		con.value='';
}
function FSsearch()
{
	var f = document.forms["frmSearch"];
	var txt = f.txtdescription.value
	if(txt.length>2)
	{
		popup('/process.jsp?section=quicksearch&action=search&description=' + txt,'Food Swap',564,358,'scrollbars=no');
	}
	else
	{
		alert('At least 3 characters are required');
	}
	return false;
}
