function openwin(name, output) {

    newwin = window.open(name,'','top=150,left=150,width=500,height=500,scrollbars=yes');

if (!newwin.opener) newwin.opener = self;

}

function checkFPMForm() {

    var emailString = new String(document.featured.email.value);
    if(!emailString.match(/^[^@]+@([-\w]+\.)+[A-Za-z]{2,4}$/)) {
         alert("You must enter a valid email address for yourself.");

         document.featured.email.focus();

         return false;

     }

	 if( (document.featured.url.value == null) || (document.featured.url.value == "")  ) {

      alert("Please enter your web page.");

	  document.featured.url.focus();

	  return false;

   }



}
