<!--
//bookmark
function Bookmark(){
 if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
   var url="http://www.ccam.com";
   var title="Capital Cities Asset Management";
   window.external.AddFavorite(url,title)
  }
}


// popup window
function PopUp(url,width,height){
  newone=window.open(url,'popup', 'toolbar=no,directories=no,titlebar=no,location=no,status=no,scrollbars=yes,resizable=yes,menubar=no,width=' + width + ',height=' + height);
}

// NEw window
function Start(url,width,height){
  newone=window.open(url,'popup', 'toolbar=yes,directories=yes,titlebar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes,menubar=yes,width=' + width + ',height=' + height);
}

  
// validate
function checkFields()  {
if (document.emailform.Contact.value == '')  {
   alert('Please enter your full name in the "\Contact\" field.');
   document.emailform.Contact.focus();
   return (false);
   }
if (document.emailform.Address.value == '')  {
   alert('Please enter a valid entry in the \"Address.\" field.');
   document.emailform.Address.focus()
   return (false);
   }
if (document.emailform.city.value == '')  {
   alert('Please enter your city in the \"City\" field.');
   document.emailform.city.focus()
   return (false);
   }
if (document.emailform.state.value == '')  {
   alert('Please enter your state in the \"State\" field');
   document.emailform.state.focus()
   return (false);
   }
if (document.emailform.zip.value == '')  {
   alert('Please enter your zip code in the \"Zip\" field.');
   document.emailform.zip.focus()
   return (false);
   }
if (document.emailform.Phone1.value == '')  {
   alert('Please enter a valid phone number in the \"Daytime Phone #\" field.');
   document.emailform.Phone1.focus()
   return (false);
   }
return true;
}

-->