/* This method allows users to add RAL to favorites */ 
function MM_openBrWindow(theURL, winName, features) 
{
	window.open(theURL,winName,features);
}

/* This method allows users to add RAL to favorites */ 
function bookmark()
{
	if (document.all)
	{
		window.external.AddFavorite("../../default.htm", "liutravel.com");
	}
	else
	{
		alert("Click the OK button and then type Ctrl-D");
	}
}

function validateEmail(aEmail)
{
	var errorFlag = true;
	var errorMessage = "";
	
	num = aEmail.search(/^[\w\.-]+@{1}([\w-]+\.{1})+[a-z]{2,3}(a-z)?$/i);

	if (num == -1)
	{
		errorMessage = errorMessage + "You must enter a valid email address.\n\n";
		errorFlag = false;
	}

	if (errorFlag != true)
	{
		errorMessage = errorMessage + "Please make corrections.";
		alert(errorMessage);
		return false;
	}
	else
	{
		return true;
	}
}
