<!--

function checkEmail2( )
{

  if (emailform.email.value == "") {
    alert( "Please enter your email address" );
    emailform.email.focus();
    return false ;
  } else {

return isValidEmail(emailform.email.value);
   }
  return true ;
}


function checkEmail( )
{

  if (emailform.email.value == "") {
    alert( "Please enter your email address before clicking the 'Submit' button." );
    emailform.email.focus();
    return false ;
  } else {

return isValidEmail(emailform.email.value);
   }
  return true ;
}


function isValidEmail(str) {
	if (!((str.indexOf(".") > 2) && (str.indexOf("@") > 0))){
	    alert( "Your email address appears to be formatted incorrectly. Please try again." );
	    emailform.email.focus();
	    return false ;
	}

  return true ;
}



function checkContactEmail( )
{

  if (contact.email2.value == "") {
    alert( "Please enter your email address so that we are able to respond to you more effectively." );
    contact.email2.focus();
    return false ;
  } else {

return isValidEmail(contact.email2.value);
   }
  return true ;
}

function newWin(url)
{
window.open(url,'store', 'width=800,height=175,toolbar=yes, location=yes,directories=no,status=no,menubar=yes,scrollbars=yes,copyhistory=no,resizable=yes');
//store.opener.focus();
}
//-->



