/*
function ValidateEmail(aiDestination) {
  var sMessage = "";
  var sChars = /[^a-zA-Z0-9@_.-]/g;
  var sMatch = document.forms['register'].email.value.match(sChars);
  var sSplit = document.forms['register'].email.value.split("@");
  if ((sMatch!=null) || (sSplit.length != 2) || (sSplit[0].length == 0)){
    window.alert ("Please enter a valid email address");
  }
  else{
    document.forms['register'].method="post";
    document.forms['register'].action="/subscriber/login.php?type=" + aiDestination ;
    document.forms['register'].submit();
  }
}

function EmptyBox() {
  if (document.forms['register'].email.value=="enter your email here"){
    document.forms['register'].email.value="";
  }
}

document.write('<span class="subscription_head" style="color:990000;">Join our Mailing&nbsp;List</span><br>\n' +
  '<b>Subscribe to our newsletter and choose from one of</b><br><br>\n' +
  '&nbsp;- Use of pre-paid cellphone<br>\n' +
  '&nbsp;- Health Insurance kickstart<br>\n' +
  '&nbsp;- Harbour ferry cruise<br>\n' +
  '&nbsp;- Auckland city bus tour<br>\n' +
  '&nbsp;- All Blacks kit bag<br>\n' +
  '&nbsp;- Rainbow\'s End family pass<br>\n' +
  '&nbsp;&nbsp;&nbsp;<a href="/services/subscriptioncentre.php">Full Details</a><form name="register">');

//adjust length of text box based on browser type
if (document.layers){
  document.writeln('<input type = "Text" name="email" value="enter your email here" size="14" maxlength="64" onclick="javascript:EmptyBox();">');
}else{
  document.writeln('<input type = "Text" name="email" value="enter your email here" size="22" maxlength="64" onclick="javascript:EmptyBox();">');
}

document.write(
  ' <br><br>\n' +
  ' <span class="caption">Click below to:<br><b>\n' +
  ' &#149; <a href="javascript:ValidateEmail(1);">Register now</a>\n' +
  ' <br>\n' +
  ' &#149; <a href="javascript:ValidateEmail(5);">View my details</a>\n' +
  ' </b></span>\n' +
  '</form>'
);
*/