My form has 3 "plan your route" buttons, one for each office location in the city, and then one set of input fields for the starting address, city, state, zipcode.
When you enter your address and then press one of the buttons it should open a MSN map window showing the map and driving directions to that particular offices location. Instead, it shows the same map and directions no matter which button you push. The only way I can make it work is if I set up 3 different forms that each have their own set of starting address fields but it looks terrible on the screen.
I included the HTML code below and I'm hoping someone can tell me how to make it do what I want it to do.
<div style="text-align:center;">
<!--gem:tlx.tlx.map-->
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<TD ALIGN="center">
<form action="
http://maps.msn.com/directionsFind.aspx" method="get" style="margin-bottom:0" target="_blank">
<table border="0" cellpadding="0" cellspacing="0">
<TR>
<TD ALIGN="center"><input name="strt2" type="hidden" value="2801 Youngfield St "><input name="city2" type="hidden" value="Golden "><input name="stnm2" type="hidden" value="CO "><input name="zipc2" type="hidden" value="80401"><input border="0" src="
/addon/maps/white_plan_route.gif" type="image">
</TD>
<TD ALIGN="center"><input name="strt2" type="hidden" value="12001 63rd Pl "><input name="city2" type="hidden" value="Arvada "><input name="stnm2" type="hidden" value="CO "><input name="zipc2" type="hidden" value="80004"><input border="0" src="
/addon/maps/white_plan_route.gif" type="image">
</TD>
<TD ALIGN="center"><input name="strt2" type="hidden" value="808 S Public Rd "><input name="city2" type="hidden" value="Lafayette "><input name="stnm2" type="hidden" value="CO "><input name="zipc2" type="hidden" value="80026"><input border="0" src="
/addon/maps/white_plan_route.gif" type="image">
</TD>
</TR>
<TR>
<TD ALIGN="center" COLSPAN="3">
<table border="0" width="550">
<TR>
<TD ALIGN="left" COLSPAN="2"><span style="font-weight:bold;font-size:13px;">Enter your starting address:</span></TD>
</TR>
<TR>
<TD ALIGN="right"><span style="font-size:13px;">Street Address: </span></TD>
<TD><INPUT NAME="strt1" SIZE="30" TYPE="text"></TD>
</TR>
<TR>
<TD ALIGN="right"><span style="font-size:13px;">City: </span></TD>
<TD><INPUT NAME="city1" SIZE="30" TYPE="text"></TD>
</TR>
<TR>
<TD ALIGN="right"><span style="font-size:13px;">State: </span></TD>
<TD><INPUT NAME="stnm1" SIZE="30" TYPE="text"></TD>
</TR>
<TR>
<TD ALIGN="right"><span style="font-size:13px;">ZIP Code: </span></TD>
<TD><INPUT NAME="zipc1" SIZE="30" TYPE="text"></TD>
</TR>
</table>
</TD>
</TR>
</table>
</form>
</TD>
</TR>
</table>
<!--end gem--><!--"''"-->
</div>