<!-- 

    function ValidateMyForm() {
      with (document.MyForm) {
        if (!BUZZ.checked  && !ReEnter.checked && !Classifieds.checked && !YellowPages.checked) {
          alert('Please check Weekend Buzz, Picture CLASSIFIEDS, or ONLINE Yellow Pages.');
          BUZZ.focus();
          return false;
        } else if (name.value == '') {
          alert('Please enter your name.');
          name.focus();
          return false;
        } else if (name.value == '--NotUnique--') {
          alert('Oops, someone has already taken than name. Please enter another name.');
          name.focus();
          return false;
        } else if (email.value == '') {
          alert('Please enter your email address.');
          email.focus();
          return false;
        } else if (email.value.indexOf('@',0) < 1 || email.value.indexOf('.',0) < 1) {
          alert ('Please enter a valid email address.');
          email.focus();
          return false;
        } else if (email.value.indexOf('@aol.com',0) > 0) {
          alert('Unfortunately, we cannot accept AOL email addresses. Please use any other email address.');
          email.focus();
          return false;
        } else if (email.value.indexOf('@AOL.COM',0) > 0) {
          alert('Unfortunately, we cannot accept AOL email addresses. Please use any other email address.');
          email.focus();
          return false;
        } else if (phone.value == '') {
          alert('Please enter your phone number.');
          phone.focus();
          return false;
        } else {
          submit();
          alert('You are successfully entered. Thank You!')
          return true;
        }
      }
    }

function AppendWidth(myurl){
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.outerWidth;
    //myHeight = window.outerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = window.screen.availWidth;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = window.screen.availWidth;
  }
  return myurl + myWidth;
}

-->