If you just want to link your managecart page to a page called "2checkout", replace in you page body:
- Code: Select all
<FORM ACTION="checkout.htm" METHOD="GET" onsubmit="return ValidateCart(this)">
with
- Code: Select all
<FORM ACTION="2checkout.htm" METHOD="GET" onsubmit="return ValidateCart(this)">
If you are trying to get your cart to go to two different checkout pages, you will need to set up a script that changes the destination of the checkout page based upon whatever stipulations you have. For instance, you may want a diferent checkout page for credit/debit checkout and money order and checks.
Here is a good example of someone who set up their cart to do exactly that (except they have about 4 checkout pages):
http://www.thefrenchybee.com/managecart.html
You should be able to look at the scripts on that page and get all the help you need.