﻿function fu_login()
{
  var validinput = "yes";
  
  if (document.fm_login.typeID.value != "")
  { 
    if ( (document.fm_login.username.value == "") && (document.fm_login.pword.value == "") )
    {
      alert("Please enter your username and password!");
      validinput = "no";
    }

    if ( (document.fm_login.username.value == "") && (document.fm_login.pword.value != "") )
    {
      alert("Please enter your username!");
      validinput = "no";
    }

    if ( (document.fm_login.username.value != "") && (document.fm_login.pword.value == "") )
    {
      alert("Please enter your password!");
      validinput = "no";
    }  
  }
  else
  {
    alert("Select Brochure Type");
    validinput = "no";
  }
  
  if (validinput == "yes") 
  {
    document.fm_login.login.value = "yes";
    document.fm_login.submit();
  }  
}

function fu_email()
{
  if (document.fm_login2.email.value == "")
  {
    alert("Please enter your email address or website address!");
  }
  else 
  {
    document.fm_login2.sendemail.value = "yes";
    document.fm_login2.submit();
  }  
}

function fu_pass()
{
  document.all.pass.style.visibility='visible';
}

function fu_openbro(id,from)
{
  w = 1000
  h = 700
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes, resizable=yes'
  mypage = 'http://www.stayinbritain.com/brochures/default.asp?id='+ id +'&from='+ from
  win = window.open(mypage,"Brochure",settings)
}

function fu_inbritain()
{
  document.fm_login.inbritain.value = "yes";
  document.fm_login.submit();
}

