function jumpurl(form){
location = form.URL.options[form.URL.selectedIndex].value;
return true;
};
document.write("<FORM ACTION=\"\">");

document.write("<SELECT NAME=\"URL\" SIZE=\"1\">");
document.write("<OPTION VALUE=\"/\">Home</OPTION>");
document.write("<OPTION VALUE=\"models.htm\">Models</OPTION>");
document.write("<OPTION VALUE=\"history.htm\">History</OPTION>");
//document.write("<OPTION VALUE=\"pricing.htm\">Pricing</OPTION>");
document.write("<OPTION VALUE=\"photos.htm\">Photos</OPTION>");
document.write("<OPTION VALUE=\"test.htm\">Testimonials</OPTION>");
document.write("<OPTION VALUE=\"about.htm\">About Us</OPTION>");
document.write("<OPTION VALUE=\"contact.htm\">Contact Us</OPTION>");
document.write("</SELECT>&nbsp;");
document.write("<input type=\"BUTTON\" VALUE=\"Go\" onclick=\"jumpurl(this.form);\">");
document.write("</FORM>");
document.write("</DIV>");


