// JavaScript Document
var bookmarkurl="http://www.flyinginlove.com"
var bookmarktitle="Flying in Love"

function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

var expphone = /[^\d|\-]+/;
//var expaddress = /[^\w|\s|\~|\!|\@|\#|\&|\(|\)|\_|\-|\+|\{|=|\[|\]|\:|\,|\.|\/]+/;
var expaddress = /[^\w|\s|\-|\.|\,|\#|\/]+/;		
var emailexp = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})|\,+$/;
var expname = /[^\w|\s|\-|\.|\,]+/;

function validateNews(mf)
{
	if(mf.nlBox.value=="")
	{
		alert("Please enter your Email Address");
		mf.nlBox.focus();
		return false;
	}
	if (mf.nlBox.value.indexOf("@") < 0)
		{
			alert("Incorrect email address. Please re-enter");
			mf.nlBox.focus();
			return false;
		}		
	if (mf.email.value.indexOf(".") < 0)
		{
			alert("Incorrect email address. Please re-enter");
			mf.nlBox.focus();
			return false;
		}	
	if (mf.nlBox.value.indexOf(" ") >= 0)
		{
			alert("Incorrect email address. Please re-enter");
			mf.nlBox.focus();
			return false;
		}
		return true;
}

