

function rw(str)
{
 document.write(str);
}

function jumpto(url)
{
 location.href=url;
}
function renderquote()
{
   rw('<form action="" method="post" name="quotejump" >');
   rw('<div align="left">');
   rw('<select name="menu" size="0" class="smalltxt"  onchange="jumpto(this.value)" >');
   rw(' <option value="#" selected="selected">Choose Quote Type --&gt;</option> ');
   rw(' <option value="personal-lines-quote.html">Personal Lines Quote</option> ');
   rw(' <option value="commercial-lines-quote.html">Commercial Lines Quote</option> ');
   rw(' <option value="health-insurance-quote.html">Life &amp; Health Insurance</option> ');
   rw(' </select>');
   rw(' </div>');
   rw(' </form>');														
}							