function menu_goto( menuform )
{

  var baseurl = 'http://www.calvertdesigngroup.com/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( 'Site Navigation: <select name="url" style="background-color: silver; height: 12pt; font-size: 12px; font-family: Arial, Helvetica, sans-serif;" onChange="menu_goto(this.form)">' );
document.writeln( '<option value="">Select One</option>' );
document.writeln( '<option value="index.php">Home</option>' );
document.writeln( '<option value="portfolio.php">Portfolio</option>' );
document.writeln( '<option value="services.php">Services</option>' );
document.writeln( '<option value="about_us.php">About Us</option>' );
document.writeln( '<option value="design_methodology.php">Design Methodology</option>' );
document.writeln( '<option value="business_philosophy.php">Business Philosophy</option>' );
document.writeln( '<option value="contact_us.php">Contact</option>' );
document.writeln( '</select> <img src="images/spacer_trans.gif" width="14" height="1" alt="" border="0">&nbsp;&nbsp;&nbsp;&nbsp;' );
document.writeln( '</form>' );


