I'm making a shopping mall website using Yahoo solution. I have multiple options for items and some items have different price dependent on the options. Yahoo doesn't support multiple price option and therefore I try to find a solution for this problem. One of my idea is to make multiple pages and redirect the page dependent on options. For example, If a customer chose model A, the page will stay in the page A which displays $1000. If a customer chose model B, the page will redirect to the page B which displays $500. I have already made dynamic options with Javascript but I want to modify it to redirect a page.Here is the link of my page:
http://parseven.com/callaway_diabloedge_iron.html
In the page, there are options in the middle. If a customer chose his hand, it shows options, "#4 Thru AW," "Lob Wedge," and "Sand Wedge." If a customer chose either "Lob Wedge" or "Sand Wedge', the page has to redirect to a page which has different price. I'm a novice to JS. Could anyone help me? Thanks in advance.
PS
I'm using javascript to generate options dependent on previous option. The code is
<script type="text/javascript" language="javascript">
<!--
document.write('<select name="Iron(s)" onChange="javascript: listboxchange (this.options[this.selectedIndex].value);"><option value="">Select Iron(s)</option></select>')
-->