function openWin(bpage){
	window.open(bpage,'application','top=0,left=30,width=876,height=465,menubar=no,toolbar=no,location=no,status=yes,resizable=yes,scrollbars=yes');
}

function Form_mailing_Validator(theForm)
{
	if (theForm.sur.value == "")
  {
    alert("Please enter a value for the \"Family name\" field.");
    theForm.sur.focus();
    return (false);
  }

	if (theForm.e_mail.value == "")
  {
    alert("Please enter your email address.");
    theForm.e_mail.focus();
    return (false);
  }

  var pattern = /.+@.+(\.).+/; 
  if (theForm.e_mail.value.search(pattern) == -1) 
  { 
    alert("Please enter a valid E-mail address."); 
    theForm.e_mail.focus(); 
    return (false); 
  }


   return (true); 
}

function CreateBookmarkLink()
{
	title = document.title;
	url = location.href;

	if (window.sidebar)
	{ // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	}
	else if( window.external )
	{ // IE Favorite
		window.external.AddFavorite( url, title);
	}
	else if(window.opera && window.print)
	{ // Opera Hotlist
		return true;
	}
}
