function go2page(page) {
	window.location.href = page;
	return true;
}
function mover(page, linkobject) {
	linkobject.style.className = 'MenuSelected';
	linkobject.style.textDecoration = 'underline';
	window.status = page;
	return true;
}
function mout(linkobject) {
	linkobject.style.className = 'MenuItem';
	linkobject.style.textDecoration = 'none';
	window.status = " ";
	return true;
}
// Links
function go2hl(page) {
	var wo;
	wo = "http://www.herbalife.com/hl/templates/templatepreportal/herbalife/" + page + ".jsp";
	window.open(wo);
	return true;
}
function hllink(page) {
	window.status = "http://www.herbalife.com/hl/templates/templatepreportal/herbalife/" + page + ".jsp";
	return true;
}

function test(theForm) 
{
if (theForm.name.value == "")
{
	alert ("Please, enter your name!");
	theForm.name.focus();
	return false;
}
if ((theForm.email.value.indexOf("@") == -1) || (theForm.email.value.indexOf(".") == -1) )
{
	alert ("Please, enter your correct e-mail address!");
	theForm.email.focus();
	return false;
}
return true;
}

function GiftsPopup() {
  var GiftsWindow=null;
  GiftsWindow=window.open('','7gifts','scrollbars=yes,resizable=yes,width=500,height=600');
  GiftsWindow.location.href='http://www.bestofnutrition.com/7gifts.htm';
  GiftsWindow.focus();
  return false;
}
