function FlashLoad(width, height, path)
	{
	CreateControl("logoAnimation",	//div ID
         "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000",
		 "macromedia",
         "logoAnimation_id", 
         width, //W
         height, //H
         path,	//Flash file
         "-1", 	
         "6,0,29,0")
	}
	
var win = null;
function NewWindow(mypage,myname,w,h,scroll)
	{
		LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
		settings = 
			'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
			win = window.open(mypage,myname,settings)
	}
	
function checkForm(theForm)
{

  if (theForm.Field03_Email.value == "")
  {
    alert("Please enter your Email Address.");
    theForm.Field03_Email.focus();
    return (false);
  }

  return (true);
}