function makeLink() {
if (document.all) window.external.AddFavorite("http://www.anastasiaweb.com","anastasiaweb.com - E-mail thousands of Russian Ladies NOW!");
}

function popUp(URL) 
{
	var oo = opener;
	
	if (String(oo) == "undefined")
	{
		s = document.cookie;
		n = s.indexOf("RB_Tour_Popup");
		if (n==-1)
		{
			window.name = 'Tours_Main';
			window.open(URL,'Tours_Popup','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=200,height=510,left =0,top = 0');
			document.cookie="RB_Tour_Popup='Yes';";
		}
	}
}

function LoadInWindow(URL) 
{
	window.open(URL,'Tours_Main');
	window.close();
}

function check() {
	if (document.reg.FirstName.value=="") window.alert("Please enter your First name.");
	else if (document.reg.LastName.value=="") window.alert("Please enter your Last name.");
	else if (document.reg.BirthDate.selectedIndex == 0) window.alert("Please enter date of your birth.");
	else if (document.reg.BirthMonth.selectedIndex == 0) window.alert("Please enter date of your birth.");
	else if (document.reg.BirthYear.selectedIndex == 0) window.alert("Please enter date of your birth.");
	else if ((document.reg.country.selectedIndex == 0)) window.alert("Please enter Country");
	else if ((document.reg.country.options[document.reg.country.selectedIndex].value == "USA") && (document.reg.USState.selectedIndex == 0)) window.alert("Please enter US state");
	else if ((document.reg.country.options[document.reg.country.selectedIndex].value == "Other") && (document.reg.othercountry.value == "")) window.alert("Please enter Country");
	else if (document.reg.EmailAddress.value=="") window.alert("Please enter your e-mail address.");
	else if (document.reg.policy.checked != true) window.alert("To proceed with registration you must agree with our terms.");
	else return true;
	return false;
   }