function addToHomepage()
{
	alert('Make this site your home page:\n- Go to Preferences in the Edit Menu.\n- Choose Navigator from the list on the left.\n- Click on the "Use Current Page" button.');
}

function Search()
{
	var toSend = true;
	
	if ((document.mpForm.searchQuery.value == "") || (document.mpForm.searchQuery.value == " "))
	{
		alert('Please enter some keywords in search field first...');
		document.mpForm.searchQuery.focus();
		toSend = false;
	}
	
	if (toSend == true)
	{
		document.mpForm.act.value = "newsearch";
		document.mpForm.action = "/search.html";
		document.mpForm.submit();
	}
}

function Add2Newsletter()
{
	var toSend = true;
	
	if ((document.mpForm.newsletter.value == "") || (document.mpForm.newsletter.value == " "))
	{
		alert('Please enter your email address...');
		document.mpForm.newsletter.focus();
		toSend = false;
	}
	
	if (toSend == true)
	{
		document.mpForm.act.value = "n"; // action - add (to newsletter)
		document.mpForm.action = "/Newsletter.html"; 
		document.mpForm.submit();
	}
}

function addBookmarkForIE()
{
	if (document.all)
	{
		window.external.AddFavorite("http://www.moneypage.com/", "MoneyPage.com");
	}
}

function JumpToPage(i_index)
{
	document.mpForm.page.value = i_index;
	document.mpForm.action = "/search.html";
	document.mpForm.submit();
}

function ContactUs()
{

	var toSend = true;
	
	if (document.mpForm.name.value == "")
	{
		alert('Please enter your name...');
		document.mpForm.name.focus();
		toSend = false;
	}
	else if (document.mpForm.email.value == "")
	{
		alert('Please enter your email address...');
		document.mpForm.email.focus();
		toSend = false;
	}
	else if (document.mpForm.subject.value == "")
	{
		alert('Please enter enquiry subject...');
		document.mpForm.subject.focus();
		toSend = false;
	}
	else if (document.mpForm.message.value == "")
	{
		alert('Please enter your message...');
		document.mpForm.message.focus();
		toSend = false;
	}
	
	if (toSend == true)
	{
		document.mpForm.act.value = "s";
		document.mpForm.submit();
	}
}

function WriteFor()
{

	var toSend = true;
	
	if (document.mpForm.name.value == "")
	{
		alert('Please enter your name...');
		document.mpForm.name.focus();
		toSend = false;
	}
	else if (document.mpForm.email.value == "")
	{
		alert('Please enter your email address...');
		document.mpForm.email.focus();
		toSend = false;
	}
	else if (document.mpForm.why_text.value == "")
	{
		alert('Please wrtie why you want to write for MoneyPage.com ...');
		document.mpForm.subject.focus();
		toSend = false;
	}
	else if (document.mpForm.piece_text.value == "")
	{
		alert('Please write short piece...');
		document.mpForm.message.focus();
		toSend = false;
	}
	
	if (toSend == true)
	{
		document.mpForm.act.value = "s";
		document.mpForm.submit();
	}
}

function JumpToPageTwo()
{
	document.mpForm.action = "searchresult.html?q=" + document.mpForm.query.value + "&p=2"; document.mpForm.submit();
}

