﻿function show(menuID,menuPos){
 
document.getElementById(menuID).style.display= 'block';
document.getElementById(menuID).style.left = document.getElementById('container').offsetLeft + 190;
document.getElementById(menuID).style.top = document.getElementById('leftNav').offsetTop + document.getElementById(menuPos).offsetTop - 15;
}
function hide(menuID){
 
	document.getElementById(menuID).style.display= 'none';
}

function FrontPage_Form1_Validator(theForm)
{
  if (theForm.Email.value == "")
  {
    alert("Please enter a value for the \"E-mail\" field.");
    theForm.Email.focus();
    return (false);						
  }

  if (theForm.Email.value.length < 5)
  {
    alert("Please enter at least 5 characters in the \"E-mail\" field.");
    theForm.Email.focus();
    return (false);
  }
}

