// JavaScript Document

function showcategory()
{
urlstr = "/malldirec.asp?category="+document.catform.category.options[document.catform.category.selectedIndex].value
parent.location.href = urlstr;
}


function isValid()

{
	var continueToSubmit = true;
	if( continueToSubmit && document.forms[2]["Email Address"].value.length != 0 )
	{
		var emailValue = document.forms[2]["Email Address"].value;
		if( ( emailValue.indexOf( '@' ) <= 0 ) || ( emailValue.indexOf( '.', emailValue.indexOf( '@' ) ) <= 0 ) )
	{
			continueToSubmit = false;
			alert('You must provide a valid email address.');
			document.forms[2]["Email Address"].focus();
		}
	}
	if( continueToSubmit && document.forms[2]["Email Address"].value.length == 0 )
	{
		continueToSubmit = false;
		alert('You must provide a value for Email Address.');
		document.forms[2]["Email Address"].focus();
	}
	if( continueToSubmit && document.forms[2]["First Name"].value.length == 0 )
	{
		continueToSubmit = false;
		alert('You must provide a value for First Name.');
		document.forms[2]["First Name"].focus();
	}

	if( continueToSubmit )
	{
		document.BrentwoodJoinList.submit();
		alert('Welcome to the Brentwood Buddies Kids Club. Please pick up your surprise gift at Brentwood Customer Service on your next visit to the shopping centre.');
	}
}
