<!--
var random_num;
random_num = 0;
random_num = (Math.round((Math.random()*5)+1));

var img_tag;
img_tag = '<img src=images/leadership_left_' + random_num + '.jpg>';


var random_numP;
random_numP = 0;
random_numP = (Math.round((Math.random()*2)+1));

var img_tagP;
img_tagP = '<img src=images/header_rt_pearce' + random_numP + '.gif>';


function openWIN(popupURL, width_num, height_num) 
{
        popup = window.open(popupURL, "window",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + width_num + ',height=' + height_num);
}


    function validateNEWSLETTER() 
        {

          var intError;
          intError = 0;

	      var strError;
	      strError = 'The following fields are required:\n=========================\n\n';

	      if (document.newsletterform.txtFIRST.value == '')               {intError = intError + 1; strError += intError +') "First Name"\n';}
	      if (document.newsletterform.txtLAST.value == '')                {intError = intError + 1; strError += intError +') "Last Name"\n';}
	      if (document.newsletterform.txtFIRM.value == '')                {intError = intError + 1; strError += intError +') "Firm"\n';}
	      if (document.newsletterform.txtEMAIL.value == '')               {intError = intError + 1; strError += intError +') "Email Address"\n';}
		      
	      if (intError > 0)
	        {
	          alert(strError);
	          return false;
	        }
          else
            {
              return true;
            }

        }

//-->  
