function openWin(bpage){
window.open(bpage,'application','top=0,left=30,width=700,height=450,menubar=no,toolbar=yes,location=no,status=yes,resizable=yes,scrollbars=yes');
}

function Form_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 a value for the \"E-mail\" field.");
    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); 
}

// JavaScript Document
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;
	}
}

