function upmail(name) {
  document.write('<a href="mailto:' + name + '@' + 'upskirts.no">' + name + '@' + 'upskirts.no</a>');
}

function resize() {
  if( document.body.clientWidth < 740 ) {
    if (document.band)
    {
      document.band.width=(document.body.clientWidth/800)*450;
    }
    document.logotop.width=(document.body.clientWidth/800)*387;
  }
  else {
    if (document.band)
    {
      document.band.width='500';
    }
    document.logotop.width='387';
  }
}

function checkmail(email) {
  var checkPattern=/^(.+)@(.+)\.(.+)$/;
  var checkArray=email.match(checkPattern);
  if (checkArray==null)
  {
    alert("E-mail does not seem correct.\nPlease check and try again.");
    return false;
  }
  else
    return true;
}

//window.onload=resize;
//window.onresize=resize;

