//---------------------------------------------------------------
// Copyright (c) 2000-2003 Asset Web Design
// Pearland, Texas 281-412-3539
//
// Any use of this script without explicit permission from 
// Asset Web Design is prohibited.
//
// 08-04-2005
//---------------------------------------------------------------

function CopyStreetAddress (theForm)
  {
  theForm.txtJobSiteJobContact.value = theForm.txtPersonalName.value;
  theForm.txtJobSiteJobAddress.value = theForm.txtPersonalAddress.value;
  theForm.txtJobSiteJobCity.value    = theForm.txtPersonalCity.value;
  theForm.txtJobSiteJobState.value   = theForm.txtPersonalState.value;
  theForm.txtJobSiteJobZipCode.value = theForm.txtPersonalZipCode.value;

  return (true);
  }


